        :root {
        --primary: #003870;
        --secondary: #3498db;
        --accent: #d71900;
        --light: #ecf0f1;
        }
        
        a:link {
        color: blue; /* Color for unvisited links */
        max-width: 335px;
        overflow: hidden;
        white-space: nowrap; /* Prevent text from wrapping to the next line */
        text-overflow: ellipsis;
        }
        
        /* I don't think this is useful anymore
        a:visited {
        color: purple;  Color for visited links 
        }*/
        
        a:hover {
        color: darkblue; /* Optional: Color for links when hovered */
        }
        a:active {
        color: darkblue; /* Optional: Color for links when clicked */
        }
        
        * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        }
        
        body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;

        /* other font style......
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        */
        line-height: 1.4;
        background: var(--light);
        background: #f9f9f9;
        color: #333;
        padding: 0px;
        }
        
        /*
        .header {
        background: var(--primary);
        color: white;
        padding: 1rem;
        text-align: left;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        top: 0;
        z-index: 100;
        }
        */
        
        .container {
        max-width: 800px;
        margin: 0 auto;
        padding: 10px;
        }
        
        .website-list {
        list-style: none;
        padding: 0;
        }
        
        .website-item {
        /*display: flex;*/
        justify-content: space-between;
        align-items: center;
        padding: 8px;
        margin: 10px 0;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        /*transition: transform 0.2s ease, box-shadow 0.2s ease;*/
        }
        
        .website-title {
        font-size: 1em;
        /*border: 1px solid black;*/
        }
        
        .website-info {
        font-size: 0.8em;
        /*border: 1px solid black;*/
        }
        
        .website-category {
        font-size: 0.85em;
        color: #555;
        background: #f0f0f0;
        padding: 4px 8px;
        border-radius: 12px;
        margin-left: 10px;
        }
        
        .website-title-and-category {
        display: flex;
        justify-content: space-between;
        }
        
        .website-link {
        color: #007bff;
        text-decoration: none;
        font-size: 0.95em;
        /*border: 1px solid black;*/
        /* trying to make the URL shorter... */
        display: inline-block;
        max-width: 200px; 
        overflow: hidden;
        white-space: nowrap; /* Prevent text from wrapping to the next line */
        text-overflow: ellipsis;
        
        }
        
        .website-link:hover {
        text-decoration: underline;
        }
        
        .website-link:visited {
        color: purple;
        text-decoration: underline;
        }
        
        .post-box {
        display: flex;
        flex-direction: row; 
        padding: 10px; 
        margin: 8px 0; 
        background: #d0eaf5; 
        border: 1px solid #ddd; 
        border-radius: 6px; 
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        align-items: center; /* Center items vertically */
        justify-content: space-between;
        }
        
        .post-btn {
        display: inline-block;
        align-self: center;
        text-decoration: none; 
        background-color: #2f97c2; 
        color: white; 
        border: none; 
        border-radius: 4px; 
        padding: 8px 12px; 
        cursor: pointer; 
        font-size: 0.9em; 
        max-height: 37.5px;
        }
        .post-btn:hover {
        background-color: #1e8449; /* A darker shade of green */
        }
        
        .post-inner {
        display: flex; 
        flex-wrap: wrap; 
        align-items: top; 
        }
        
        .post-photo {
        height: auto; 
        max-width: 100%; 
        margin-right: 10px; 
        flex-shrink: 0; 
        max-height: 120px;
        border-radius: 6px;
        }
        
        .post-title-group {
        display: flex; 
        align-items: baseline;
        margin-bottom: 2px;
        flex-direction: row;
        }
        
        .post-title {
        font-size: 1em; font-weight: bold; margin-right: 5px;
        }
        
        .post-tag {
        font-size: 0.7em; color: #777; background: #e0e0e0; padding: 2px 4px; border-radius: 2px;
        }
        
        .post-location {
        font-size: 0.9em; color: #555; display: block; 
        }
        
        .post-details {
        font-size: 0.8em; color: #555; display: block; 
        }
        
        .post-clmn {
        flex-direction: column;
        }
        
        
        @media (max-width: 480px) {
        
        .post-box {
        padding: 8px;
        margin: 6px 0;
        flex-direction: column; 
        
        }
        
        .post-inner {
        flex-direction: column; /* Stack image and text on mobile */
        align-items: flex-start; /* Align items to the left */
        margin-bottom: 10px;
        }
        
        .post-photo {
        max-width: 100%; /* Image takes full width on mobile */
        margin-right: 0; /* Remove right margin */
        margin-bottom: 8px; /* Add bottom margin below image */
        max-height: none; /* Remove max height restriction */
        border-radius: 6px; /* Optional: round image corners */
        }
        
        .post-title-group {
        flex-direction: row; /* Stack title and tag on mobile */
        align-items: flex-start;
        margin-bottom: 3px;
        }
        
        .post-title {
        font-size: 1em;
        margin-right: 0; /* Remove right margin */
        margin-bottom: 2px; /* Add bottom margin below title */
        }
        
        .post-tag {
        font-size: 0.7em;
        padding: 3px 5px;
        border-radius: 3px;
        margin-left: 4px;
        }
        
        .post-location {
        font-size: 0.9em;
        }
        
        .post-details {
        font-size: 0.8em;
        }
        
        .post-btn {
        justify-content: flex-start; /* Align button to the left on mobile */
        }
        
        .post-btn-link {
        font-size: 0.9em;
        padding: 8px 14px;
        border-radius: 4px;
        }
        
        .website-item {
        flex-direction: column;
        align-items: flex-start;
        }
        
        .website-title-and-category {
        display: flex;
        justify-content: space-between;
        width: 100%;
        }
        
        .website-category {
        margin: 0;
        }
        
        .website-link {
        margin-top: 5px;
        font-size: 0.85em;
        
        }
        
        }
