body {
    min-height: 100vh;
    background: linear-gradient(135deg, #012d5a 0%, #013d7a 50%, #0a5298 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
a{
    text-decoration: none;
}
.my-page-overview {
    display: flex;
    flex-direction: row;
    margin-bottom: auto;
    height: 100%;
    animation: fadeIn 1s ease;
}

.my-page-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    height: 70vh;
    width: 70vw;
    margin-top: auto;
    margin-bottom: auto;
    align-self: center;
    animation: fadeIn 1s ease;
}

/* White title */
.my-page-title {
    color: white;
    font-family: "Playfair Display";
    font-weight: 600;
    font-size: clamp(1.5rem, 5vw, 3rem);
    margin-top: 10px;
    margin-bottom: auto;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.my-page-overview-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 40%;

    justify-content: center;
    align-items: flex-start;
    align-self: flex-start;
    justify-self: left;
    height: 100%;
}

/* Category buttons  */
.my-page-categories {
    font-size: clamp(1.2rem, 1.8vw, 2rem);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    padding: 20px;
    width: 80%;
    text-align: center;
    color: white;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.my-page-categories:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}


.my-page-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 60%;

    justify-content: center;
    align-items: flex-start;
    align-self: flex-start;
    justify-self: left;
    height: 100%;
}

.my-page-result-box {
    font-size: clamp(1.2rem, 1.8vw, 2rem);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 20px;
    width: 90%;
    height: 80%;
    text-align: left;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    scroll-behavior: smooth;
    align-items: center;
}

.my-page-orders {
    font-size: clamp(1.2rem, 1.8vw, 2rem);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 20px;
    width: 80%;
    text-align: center;
    color: white;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.my-page-orders:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* Scrollbar to match */
.my-page-result-box::-webkit-scrollbar {
    width: 6px;
}

.my-page-result-box::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.my-page-result-box::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
}


.my-page-inquiry-results {
    font-size: clamp(1.2rem, 1.8vw, 2rem);
    padding: 20px;
    width: 90%;
    height: 100%;
    text-align: left;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    scroll-behavior: smooth;
    align-items: center;
    animation: fadeIn 1s ease;

}

.my-page-quote-results {
    font-size: clamp(1.2rem, 1.8vw, 2rem);
    padding: 20px;
    width: 90%;
    height: 100%;
    text-align: left;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    scroll-behavior: smooth;
    align-items: center;
    animation: fadeIn 1s ease;

}

.my-page-order-results {
    font-size: clamp(1.2rem, 1.8vw, 2rem);
    padding: 20px;
    width: 90%;
    height: 100%;
    text-align: left;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    scroll-behavior: smooth;
    align-items: center;
    animation: fadeIn 1s ease;

}

.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .my-page-overview {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        height: auto !important;
    }

    .my-page-overview-boxes {
        flex-direction: row !important;
        width: 100% !important;
        height: auto !important;
        justify-content: space-between !important;
        align-items: center !important;
        align-self: center !important;
        gap: 10px !important;

    }

    .my-page-categories {
        width: 80% !important;
        padding: 12px 5px !important;
        font-size: 0.8rem !important;
        text-align: center !important;
    }

    .my-page-results {
        width: 100% !important;
        height: 85% !important;
        align-self: center !important;
    }

    .my-page-result-box {
        width: 80% !important;
        height: 100% !important;
        padding: 15px 5px !important;
        margin-left: auto;
        margin-right: auto;
    }

    .my-page-title {
       margin-bottom:15px !important;
    }


    .my-page-box {
        width: 85vw !important;
        height: 80vh !important;
        padding: 20px 15px !important;

    }
}