
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;
}



.quote-details-overview {
    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-bottom: auto;
    animation: fadeIn 1s ease;
    margin-top: auto;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.quote-details-title {
    color: white;
    font-family: "Playfair Display";
    font-weight: 600;
    font-size: clamp(1.5rem, 5vw, 3rem);
    margin-top: auto;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    justify-self: center}

.quote-details-box{
    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;
    height: 100%;
    overflow-y: auto;
    margin-bottom: auto;
    color: white;
}

.quote-details-box p, h2{
    margin-left: 20px;
}

.quote-header{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
}

.admin-return-button{
    align-self: flex-start;
}

.admin-return-svg{
    stroke: white;
}

.admin-return-button:hover .admin-return-svg{
    stroke: #8fbae4;
    cursor: pointer;
}






