/* Modern CSS - Glassmorphism & Animations */

:root {
    --glass-bg: rgba(255, 255, 255, 0.5);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    --glass-blur: 10px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

body {
    background: linear-gradient(135deg, #f4f6f9 0%, #eef1f5 100%);
    min-height: 100vh;
}

/* Glassmorphism Cards */
.card,
.policy-card,
.welcome-card,
.claims-box,
.upload-area,
.doc-card,
.page-header {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border) !important;
    box-shadow: var(--glass-shadow) !important;
    animation: slideUp 0.6s ease-out forwards;
    padding: 30px !important;
    border-radius: 20px !important;
}

/* Welcome Card Special Style */
/* Welcome Card Special Style */
.welcome-card {
    background: linear-gradient(135deg, #0d1b2a 30%, #b08d55 100%) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Stagger Animations */
.dashboard-grid>div:nth-child(1) {
    animation-delay: 0.1s;
}

.dashboard-grid>div:nth-child(2) {
    animation-delay: 0.2s;
}

.dashboard-grid>div:nth-child(3) {
    animation-delay: 0.3s;
}

.dashboard-grid>div:nth-child(4) {
    animation-delay: 0.4s;
}

/* Buttons & Interactive Elements */
.btn-new,
.btn-save,
.btn-claim,
a div {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-new:hover,
.btn-save:hover,
.btn-claim:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

a div:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Inputs */
input,
select,
textarea {
    background: rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    transition: all 0.2s;
}

input:focus,
select:focus,
textarea:focus {
    background: white !important;
    border-color: var(--primary-color, #0d1b2a) !important;
    box-shadow: 0 0 0 3px rgba(13, 27, 42, 0.1);
}