:root {
    --background-color: #ECF0F3;
    --primary-color: #3c3e41;
    --secondary-color: #1e2125;
    --highlight-color: #fd4520;
    --shadow: 5px 5px 15px #D1D9E6, -5px -5px 15px #ffffff;
    --background2: linear-gradient(145deg, #e2e8ec, #ffffff);
    --header-height: 70px;
}

body, html {
    background-color: var(--background-color);
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    max-width: 100svw;
    scroll-behavior: smooth;
}

header {
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: 100svw;
    height: var(--header-height);
    top: 0;
    margin: 0;
    padding: 5px 2rem;
    z-index: 2;
    background-color: var(--background-color);
    height: fit-content;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 10px 10px 19px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

    header img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin: 10px;
    }

    header nav {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

        header nav ul {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            list-style-type: none;
        }

            header nav ul li {
                margin: 20px 20px;
            }

                header nav ul li a {
                    text-decoration: none;
                    color: var(--primary-color);
                    font-size: 16px;
                    font-weight: 600;
                    text-transform: uppercase;
                    transition: color 0.3s ease;
                }

                    header nav ul li a:hover {
                        color: var(--highlight-color);
                    }

@media screen and (max-width: 768px) {
    header {
        display: none;
    }
    section {
        padding: 50px 1.5rem;
    }

        section:first-of-type {
            padding-top: 10px;
        }
}

.selected {
    color: var(--highlight-color);
}

.section-title {
    width: 100%;
    text-align: center;
}

section {
    padding: calc(var(--header-height) + 15px) 5rem;
    box-sizing: border-box;
    position: relative;
}

    section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: calc(100% - 10rem);
        height: 2px;
        background-color: rgb(220, 220, 220);
        transform: translateX(-50%);
    }

h1 {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 700;
}

#hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-content: center;
    align-items: center;
    justify-content: center;
}

    #hero span.typewriter:after {
        content: '|';
        display: inline-block;
        opacity: 0;
        animation: blink 1s ease infinite;
    }

.highlight {
    color: var(--highlight-color);
}

@keyframes blink {
    to {
        opacity: 1;
    }
}

ul {
    list-style-type: none;
    padding: 0;
}

.socials {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

    .socials ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .socials li {
        margin: 10px 20px 10px 0;
    }

    .socials a {
        display: inline-block;
        width: 60px;
        height: 60px;
        line-height: 60px;
        text-align: center;
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        border-radius: 6px;
        box-shadow: var(--shadow);
        background: var(--background2);
        position: relative;
    }

        .socials a::before {
            background: var(--highlight-color);
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 6px;
            top: 0;
            left: 0;
            z-index: -1;
            color: var(--background-color);
        }

        .socials a:hover {
            color: var(--background-color);
            transform: translateY(-3px);
        }

            .socials a:hover::before {
                opacity: 1;
            }

    .socials svg:hover {
        background-color: var(--highlight-color);
        color: var(--background-color);
    }

    .socials svg {
        color: var(--primary-color);
    }

.skills ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.skills li {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 6px;
    box-shadow: var(--shadow);
    background: var(--background2);
}

.skills img {
    max-height: 23px;
    width: auto;
    vertical-align: middle;
}

/* Specific enlargement for logos with text/small details */
.skills img[alt*="Google Cloud Platform"],
.skills img[alt*="Prisma"],
.skills img[alt*="Tailwind"] {
    max-height: 40px;
    max-width: 40px;
    object-fit: contain;
    transform: scale(1.2);
    transform-origin: center;
}

/* Specific styling for Tailwind CSS logo to make white text readable */
.skills img[alt*="Tailwind"] {
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.8));
}

.content {
    padding-top: 0;
    display: flex;
    flex-direction: column;
}

.outer {
    display: grid;
    grid-template-columns: 1fr 2fr;
}

#person_container {
    max-width: 370px;
}

#person {
    border: 0;
    vertical-align: middle;
    max-width: 370px;
    height: auto;
    padding: 32px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    #hero {
        grid-template-columns: 1fr;
    }

        #hero span.typewriter {
            font-size: 24px;
        }

    .socials ul {
        justify-content: center;
    }

    .socials li {
        margin: 8px;
    }

    .skills ul {
        justify-content: center;
    }

    .outer {
        grid-template-columns: 1fr;
    }

    #person_container {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 40px;
    }

    #hero {
        grid-template-columns: 1fr;
    }

    .socials ul {
        justify-content: center;
    }

    .socials a {
        width: 50px;
        height: 50px;
        font-size: 12px;
    }

    .skills li {
        width: 50px;
        height: 50px;
    }

    #person {
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 30px;
    }

    #hero {
        grid-template-columns: 1fr;
    }

    .socials ul {
        justify-content: center;
        flex-direction: row;
    }

    .socials a {
        width: 50px;
        height: 50px;
        font-size: 10px;
    }

    .skills li {
        width: 50px;
        height: 50px;
    }

    #person {
        max-width: 100%;
    }
}

#resume {
    box-sizing: border-box;
    max-width: 100svw;
}

.timeline-container {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 300px;
    overflow: hidden;
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, .3);
}

/* Timeline Wrapper */
.timeline-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    width: calc(100% - 40px);
    height: 100%;
    scroll-behavior: smooth;
    display: flex;
    align-items: center;
    position: relative;
    overflow-y: hidden;
}

/* Timeline */
.timeline {
    display: flex;
    align-items: center;
    position: relative;
    gap: 150px;
    padding: 0 20px;
    height: 100%;
    transform: translateY(25%);
}

    /* Connecting Line */
    .timeline::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 4px;
        background-color: #ccc;
        z-index: 1;
    }

/* Nodes */
.node {
    position: relative;
    text-align: center;
    z-index: 2;
}

    /* Node Indicator */
    .node::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        background-color: #007bff;
        border-radius: 50%;
        z-index: 3;
        border: 4px solid white;
    }

/* Card */
.card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    height: auto;
    max-height: 200px;
    border: 1px solid #ddd;
    text-align: left;
    position: relative;
    transform: translateY(-70%);
    overflow: hidden;
    white-space: normal;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-75%) scale(1.05);
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    }

    .card h3 {
        margin: 0 0 10px;
        font-size: 18px;
        color: #007bff;
        text-transform: capitalize;
    }

    .card p {
        margin: 0;
        font-size: 14px;
        color: #333;
        line-height: 1.4;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.button-bar {
    background: var(--background2);
    box-shadow: var(--shadow);
    border: 0 none;
    border-radius: 10px;
    width: max-content;
    margin: 0 auto;
}

.experience-btn {
    color: var(--secondary-color);
    font-family: var(--font-primary);
    padding: 30px 10px;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    outline: none;
    border: 0 none;
    transition: all .5s;
    background: transparent;
    border-radius: 10px;
}

    .experience-btn:hover, .experience-btn.active {
        background: var(--background2);
        box-shadow: var(--shadow);
        color: var(--highlight-color);
    }

#projects ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.project-card {
    text-align: left;
    padding: 20px;
    border-radius: 15px;
    background: var(--background2);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    max-width: 450px;
    position: relative;
}

    .project-card:hover {
        transform: translateY(-5px);
        box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    }

    .project-card .inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .project-card .thumbnail {
        position: relative;
        width: 100%;
        overflow: hidden;
        max-width: 390px;
        max-height: 390px;
        border-radius: 10px;
        background: #f3f3f3;
    }

        .project-card .thumbnail img {
            width: 100%;
            height: auto;
            max-width: 100%;
            object-fit: cover;
        }

    .project-card:hover .thumbnail img {
        transform: scale(1.05);
    }

    .project-card .content {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: left;
        width: 100%;
    }

    .project-card .used-skills {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        max-width: 100%;
        overflow: hidden;
    }

    .project-card .project-skill {
        display: inline-block;
        padding: 5px 12px;
        border-radius: 15px;
        background: var(--highlight-color);
        color: var(--background-color);
        font-size: 0.85rem;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .project-card .content .title {
        font-size: 1.2rem;
        font-weight: bold;
        color: var(--primary-color);
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .project-card .content .btn {
        display: inline-block;
        padding: 8px 16px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 0.9rem;
        text-align: center;
        background-color: var(--highlight-color);
        color: var(--background-color);
        transition: background-color 0.3s ease, opacity 0.3s ease;
    }

        .project-card .content .btn:hover {
            filter: invert();
        }

        .project-card .content .btn.disabled {
            pointer-events: none;
            opacity: 0.6;
            background-color: dimgrey;
            cursor: not-allowed;
        }

.project-info {
    width: 100%;
    text-align: left;
}

#admin-dashboard {
    background-color: var(--background-color);
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--background-color);
    padding: 15px;
    box-shadow: var(--shadow);
    box-sizing: border-box
}

    .admin-header img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    .admin-header nav ul {
        display: flex;
        list-style-type: none;
    }

        .admin-header nav ul li {
            margin: 0 15px;
        }

            .admin-header nav ul li a {
                text-decoration: none;
                color: var(--primary-color);
                font-size: 16px;
                font-weight: 600;
                text-transform: uppercase;
                transition: color 0.3s ease;
            }

                .admin-header nav ul li a:hover,
                .admin-header nav ul li a.selected {
                    color: var(--highlight-color);
                }

main {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
}

.admin-section {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#admin-dashboard .experience-cards, #admin-dashboard .project-cards, #admin-dashboard .blog-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

#admin-dashboard .card, #admin-dashboard .project-card {
    background-color: var(--background2);
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 300px;
    padding: 20px;
    text-align: left;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    #admin-dashboard .card:hover, #admin-dashboard .project-card:hover {
        box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    }

    #admin-dashboard .card h3, #admin-dashboard .project-card h3 {
        font-size: 1.25rem;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    #admin-dashboard .card p, #admin-dashboard .project-card p {
        font-size: 14px;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

#admin-dashboard button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: var(--highlight-color);
    color: var(--background-color);
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#admin-dashboard button:hover {
    background-color: #f88c5e;
    transform: scale(1.05);
}

#admin-dashboard button.add-btn {
    width: 100%;
    margin-top: 20px;
}

#admin-dashboard button.delete-btn {
    background-color: #e74c3c;
}

#admin-dashboard button.delete-btn:hover {
    background-color: #c0392b;
}

/* Responsive */
@media screen and (max-width: 768px) {
    #admin-dashboard .card, #admin-dashboard .project-card {
        width: 100%;
    }

        #admin-dashboard .card p, #admin-dashboard .project-card p {
            font-size: 12px;
        }
}

@media screen and (max-width: 480px) {
    #admin-dashboard .card, #admin-dashboard .project-card{
        width: 100%;
        padding: 15px;
    }

    #admin-dashboard button {
        font-size: 12px;
    }
}

/* Dialog Container */
.dialog-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--background-color);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    width: 400px;
    max-width: 90%;
    z-index: 1000;
    box-sizing: border-box;
    margin: 0;
}

/* Form Styling */
.form-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Labels */
.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Inputs and Textareas */
.form-input {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
}

    .form-input:focus {
        border-color: #007BFF;
        box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
    }

/* Buttons */
.primary-button {
    background-color: var(--highlight-color);
    color: #fff;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

    .primary-button:hover {
        filter: invert();
    }

.close-button {
    background: none;
    border: none;
    color: #999;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .close-button:hover {
        color: var(--highlight-color);
    }

/* Modal dialog styles */
.modal-dialog {
    background-color: var(--background-color);
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    animation: fadeIn 0.3s ease;
}

/* Modal content */
.modal-content {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
}

/* Modal header */
.modal-header {
    padding: 15px 20px;
    background-color: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0;
}

/* Modal body */
.modal-body {
    padding: 20px;
    font-size: 14px;
    color: var(--primary-color);
    line-height: 1.6;
}

/* Modal footer */
.modal-footer {
    display: flex;
    justify-content: flex-end;
    padding: 15px 20px;
    background-color: var(--background-color);
    gap: 10px;
}

/* Button styles */
button {
    padding: 8px 16px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, filter 0.3s ease;
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

    .btn-secondary:hover {
        background-color: #5a6268;
        filter: brightness(1.1);
    }

.btn-danger {
    background-color: #dc3545;
    color: #fff;
}

    .btn-danger:hover {
        background-color: #c82333;
        filter: brightness(1.1);
    }

    .btn-danger:disabled {
        background-color: dimgrey;
        cursor: not-allowed;
        opacity: 0.6;
    }

/* Fade-in animation for modal */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

#blog {
    display: flex;
    justify-content: center;
}

    #blog ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 1200px;
        width: 100%;
        margin: 0;
        padding: 0;
        justify-items: start; /* Align items to the start of their grid cells */
    }

/* Blog card container */
.blog-card {
    list-style: none;
    margin: auto 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: var(--background-color);
    border: 1px solid var(--highlight-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 400px;
    width: 100%;
    height: 400px;
}

    /* Hover effect */
    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
    }

    /* Link wrapping the entire card */
    .blog-card a {
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    /* Content wrapper */
    .blog-card .content {
        display: flex;
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }

    /* Blog category */
    .blog-card h3 {
        color: var(--secondary-color);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: bold;
        margin: 0;
        opacity: 0.7;
    }

    /* Blog title */
    .blog-card h2 {
        color: var(--primary-color);
        font-size: 20px;
        font-weight: bold;
        margin: 0;
    }

    /* Blog intro */
    .blog-card p {
        color: var(--primary-color);
        font-size: 16px;
        line-height: 1.5;
        margin: 0;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }

    /* Blog image */
    .blog-card img {
        width: 100%;
        height: auto;
        max-height: 200px;
        object-fit: cover;
        border-top: 1px solid var(--primary-color);
        margin-top: 10px;
        border-radius: 0 0 8px 8px;
        transition: transform 0.3s ease;
    }

    /* Hover effect on image */
    .blog-card:hover img {
        transform: scale(1.05);
    }

/* Responsive design */
@media screen and (max-width: 768px) {
    #blog {
        padding: 0 15px;
    }

        #blog ul {
            grid-template-columns: 1fr; /* 1 column on mobile */
            gap: 15px;
        }

    .blog-card {
        max-width: 90%;
    }

        .blog-card .content {
            padding: 15px;
        }

        .blog-card h2 {
            font-size: 18px;
        }

        .blog-card p {
            font-size: 14px;
        }
}


.markdown-body {
    text-align: left;
}

/* Styling for the blog details section */
.blog-details {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #333333;
}

/* Blog header styles */
.blog-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .blog-header h1 {
        font-size: 2.5rem;
        font-weight: bold;
        color: #222222;
        margin-bottom: 0.5rem;
    }

    .blog-header .blog-intro {
        font-size: 1.2rem;
        font-style: italic;
        color: #666666;
        margin-bottom: 1rem;
    }

    .blog-header .blog-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 1rem 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

/* Blog content styles */
.blog-content {
    line-height: 1.8;
    font-size: 1rem;
    color: #444444;
}

    .blog-content h2,
    .blog-content h3 {
        margin-top: 2rem;
        font-weight: bold;
        color: #111111;
        border-bottom: 2px solid #eeeeee;
        padding-bottom: 0.5rem;
    }

    .blog-content a {
        color: #007acc;
        text-decoration: none;
        border-bottom: 1px dashed #007acc;
    }

        .blog-content a:hover {
            color: #005f99;
            border-bottom: 1px solid #005f99;
        }

    /* List styles */
    .blog-content ul,
    .blog-content ol {
        padding-left: 1.5rem;
        margin: 1rem 0;
    }

    .blog-content li {
        margin-bottom: 0.5rem;
    }

    /* Code block styling */
    .blog-content pre {
        background-color: #f5f5f5;
        padding: 1rem;
        border-radius: 4px;
        overflow-x: auto;
        color: #333333;
    }

    .blog-content code {
        background-color: #f5f5f5;
        padding: 0.2rem 0.4rem;
        border-radius: 4px;
    }

/* Responsive design */
@media (max-width: 768px) {
    .blog-details {
        padding: 1rem;
    }

    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-header .blog-intro {
        font-size: 1rem;
    }

    .blog-content {
        font-size: 0.95rem;
    }
}

footer {
    background-color: var(--background-color);
    color: var(--primary-color);
    padding: 20px 0;
    border-top: 1px solid rgb(220, 220, 220);
    text-align: center;
    font-size: 14px;
}

    footer .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    footer a {
        color: var(--primary-color);
        text-decoration: none;
    }

        footer a:hover {
            text-decoration: underline;
        }

    footer .copy-right {
        margin: 0;
    }

.admin-form {
    max-width: 400px;
    margin: 100px auto;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
