/*:root {
    --lightlavender: #a33636;
    --lightblue: #028ff3;
    }*/
:root {
    --lightlavender: #667eea;
    --lightblue: #764ba2;
    --lightlavender-bright: color-mix(in srgb, var(--lightlavender) 70%, white 30%);
    --lightblue-bright: color-mix(in srgb, var(--lightblue) 70%, white 30%);
}
@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/RobotoCondensed-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
/* Background */
.app-bg {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--lightlavender), var(--lightblue));
    font-family: system-ui, sans-serif;
    padding: 1rem;
}
/* Top Nav */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    margin-bottom: 2rem;
}
.logo {
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}
.tm {
    font-size: 0.7em;
    vertical-align: super;
}
.nav-actions a {
    color: white;
    font-size: 1.4rem;
    margin-left: 12px;
    text-decoration: none;
}
.container {
    color: lightgray !important;
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
}
/* Glass Card */
.glass {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    animation: fadeUp 0.7s ease;
}
.text-muted {
    color:white !important;
}
.title {
    font-size: 1.5rem;
}
.card h2 {
    color: white;
    margin-bottom: 1rem;
}
h3 {
    color: white !important;
}
.action-btn {
    width: 70px;
}
.glassname {
    color: white;
    font-family: 'Oswald';
    font-size: 2rem;
    font-weight: normal !important;
    /*text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);*/
}
.glassdetails {
    color: black;
    font-family: 'Roboto';
    font-size: 1.02rem;
    font-weight: normal !important;
    /*text-shadow: 2px 2px 2px rgba(255, 255, 255, 0.3);*/
}
.user-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
    color: white;
}
/* Inputs */
input {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 12px;
    border: none;
    outline: none;
}

textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 12px !important;
    border: none;
    outline: none;
}

.email {
    font-weight: bold;
}

/* Button */
button {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: none;
    background: black;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.15s ease;
}

    button:hover {
        transform: translateY(-2px);
    }

.user-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.user-actions {
    display: flex;
    gap: 8px;
}

.icon-btn {
    background: rgba(255,255,255,0.25);
    border: none;
    border-radius: 10px;
    padding: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.15s ease, background 0.15s ease;
}

    .icon-btn:hover {
        transform: scale(1.1);
        background: rgba(255,255,255,0.4);
    }

    .icon-btn.delete:hover {
        background: rgba(255,0,0,0.4);
    }

.text-danger {
    color: lightpink !important;
    font-size: 1.2em !important;
}

.modal-content {
    background: linear-gradient(135deg, var(--lightblue), var(--lightlavender)) !important;
    color: white !important;
}

.modal-title {
    color: white !important;
    font-size: 2rem;
    font-weight: normal !important;
    font-family: system-ui, sans-serif;
}
.modal-body {
    color: white !important;
}

.modal-button {
    width: 100%;
    padding: 5px;
    border-radius: 14px;
    border: none;
    background: black;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.15s ease;
}

modal-button:hover {
    transform: translateY(-2px);
}


.modal-button-secondary {
    width: 100%;
    padding: 5px;
    border-radius: 14px;
    border: none;
    background: white;
    color: black;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.15s ease;
}

modal-button-secondary:hover {
    transform: translateY(-2px);
}

/* Motion */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
