/* Court Settlement System - Professional Enterprise Design */

:root {
    --primary-color: #1a365d;
    --secondary-color: #4a5568;
    --accent-color: #2b6cb0;
    --success-color: #38a169;
    --danger-color: #e53e3e;
    --warning-color: #dd6b20;
    --info-color: #3182ce;
    --dark-color: #1a202c;
    --light-bg: #f7fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Professional Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
    padding: 1rem 0;
    position: relative;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    letter-spacing: -0.025em;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-secondary) !important;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-1px);
}

/* Brand Styling */
.brand-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-md);
}

/* Logo Styling */
.brand-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    backdrop-filter: blur(10px);
}

/* Login Logo Styling */
.login-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem;
    backdrop-filter: blur(10px);
}

/* Dashboard Logo Styling */
.dashboard-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    padding: 0.5rem;
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    z-index: 9999 !important;
    position: absolute !important;
    background: white !important;
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    color: var(--text-primary) !important;
}

.dropdown-item:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateX(4px);
}

/* Fix dropdown z-index issues */
.navbar-nav .dropdown {
    position: relative;
}

.navbar-nav .dropdown-menu {
    z-index: 9999 !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    background: white !important;
    border: 1px solid var(--border-color);
}

/* Enterprise Cards */
.card {
    background: var(--white);
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.card-body {
    padding: 2rem;
}

/* Professional Form Styling */
.section-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 2rem 0 1.5rem 0;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.section-header h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
    transform: translateY(-1px);
}

.form-control:hover,
.form-select:hover {
    border-color: var(--accent-color);
}

/* Professional Buttons */
.btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.025em;
    box-shadow: var(--shadow-md);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #48bb78 100%);
    color: white;
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger-color) 0%, #fc8181 100%);
    color: white;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 8px;
}

/* Professional Status Cards */
.status-box {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.status-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.status-box:hover::before {
    transform: scaleX(1);
}

.status-box:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.status-box i {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.status-completed {
    background: linear-gradient(135deg, var(--success-color) 0%, #48bb78 100%);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.status-completed i {
    color: white;
}

/* Professional Alerts */
.alert {
    border-radius: 12px;
    border: none;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: currentColor;
}

.alert-success {
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    color: var(--success-color);
    border-left: 4px solid var(--success-color);
}

.alert-danger {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    color: var(--danger-color);
    border-left: 4px solid var(--danger-color);
}

.alert-warning {
    background: linear-gradient(135deg, #fffaf0 0%, #feebc8 100%);
    color: var(--warning-color);
    border-left: 4px solid var(--warning-color);
}

.alert-info {
    background: linear-gradient(135deg, #ebf8ff 0%, #bee3f8 100%);
    color: var(--info-color);
    border-left: 4px solid var(--info-color);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-marker {
    position: absolute;
    left: -25px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-content {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Badges */
.badge {
    padding: 8px 12px;
    font-weight: 500;
    border-radius: 6px;
}

/* Tables */
.table {
    background: white;
}

.table thead {
    background: var(--dark-color);
    color: white;
}

.table-hover tbody tr:hover {
    background-color: #f8f9fa;
    cursor: pointer;
}

/* Professional Dashboard Cards */
.dashboard-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.dashboard-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
}

.dashboard-card.primary .card-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.dashboard-card.success .card-icon {
    background: linear-gradient(135deg, var(--success-color) 0%, #48bb78 100%);
}

.dashboard-card.warning .card-icon {
    background: linear-gradient(135deg, var(--warning-color) 0%, #f6ad55 100%);
}

.dashboard-card.danger .card-icon {
    background: linear-gradient(135deg, var(--danger-color) 0%, #fc8181 100%);
}

.dashboard-card.info .card-icon {
    background: linear-gradient(135deg, var(--info-color) 0%, #63b3ed 100%);
}

.dashboard-card.dark .card-icon {
    background: linear-gradient(135deg, var(--dark-color) 0%, #4a5568 100%);
}

.dashboard-card h6 {
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.dashboard-card h2 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 2.5rem;
    margin: 0;
    line-height: 1;
}

.dashboard-card small {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Legacy Bootstrap card overrides */
.card.bg-primary,
.card.bg-success,
.card.bg-warning,
.card.bg-danger,
.card.bg-info,
.card.bg-dark {
    background: var(--white) !important;
    color: var(--text-primary) !important;
    border: none;
    box-shadow: var(--shadow-lg);
}

.card.bg-primary .card-body,
.card.bg-success .card-body,
.card.bg-warning .card-body,
.card.bg-danger .card-body,
.card.bg-info .card-body,
.card.bg-dark .card-body {
    padding: 2rem;
}

.card.bg-primary h6,
.card.bg-success h6,
.card.bg-warning h6,
.card.bg-danger h6,
.card.bg-info h6,
.card.bg-dark h6 {
    color: var(--text-secondary) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.card.bg-primary h2,
.card.bg-success h2,
.card.bg-warning h2,
.card.bg-danger h2,
.card.bg-info h2,
.card.bg-dark h2 {
    color: var(--text-primary) !important;
    font-weight: 700;
    font-size: 2.5rem;
    margin: 0;
    line-height: 1;
}

/* Alerts */
.alert {
    border-radius: 10px;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-features .badge {
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Quote Section */
.quote-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 1rem 0;
}

.quote-section .blockquote {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

.quote-section .blockquote p {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
}

.quote-section .blockquote-footer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.quote-section .blockquote-footer::before {
    content: "— ";
}

/* Court Order Details */
.court-order-details {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.court-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.court-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 500;
}

/* Court Reference Styling */
.court-reference {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 10px;
    padding: 1rem;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

/* Header Icon */
.header-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-md);
}

/* Professional Footer */
footer {
    margin-top: auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.card,
.alert {
    animation: fadeIn 0.5s ease;
}

/* Print Styles */
@media print {

    .navbar,
    .btn,
    footer,
    .no-print {
        display: none !important;
    }

    .card {
        border: 1px solid #000;
        box-shadow: none;
        page-break-inside: avoid;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header {
        padding: 1rem 1.5rem;
        margin: 1.5rem 0 1rem 0;
    }

    .section-header h4 {
        font-size: 1.1rem;
    }

    .card-body {
        padding: 1.5rem;
    }

    .card-header {
        padding: 1rem 1.5rem;
    }

    .status-box {
        margin-bottom: 1rem;
    }

    .brand-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .brand-title {
        font-size: 1rem;
    }

    .brand-subtitle {
        font-size: 0.7rem;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .hero-logo-img {
        width: 80px;
        height: 80px;
    }

    .login-logo-img {
        width: 60px;
        height: 60px;
    }

    .dashboard-logo {
        width: 50px;
        height: 50px;
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .dashboard-card {
        padding: 1.5rem;
    }

    .dashboard-card h2 {
        font-size: 2rem;
    }

    .hero-features .badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-section {
        margin: 1rem 0;
        padding: 2rem 0 !important;
    }

    .card-body {
        padding: 1rem;
    }

    .section-header {
        padding: 0.75rem 1rem;
    }

    .btn-lg {
        width: 100%;
        padding: 1rem;
    }

    .brand-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .brand-title {
        font-size: 0.9rem;
    }

    .brand-logo {
        width: 35px;
        height: 35px;
    }

    .hero-logo-img {
        width: 60px;
        height: 60px;
    }

    .login-logo-img {
        width: 50px;
        height: 50px;
    }

    .dashboard-logo {
        width: 40px;
        height: 40px;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem !important;
        margin: 0.125rem 0;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0a58ca;
}

/* Loading Spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
}

/* File Upload */
input[type="file"] {
    padding: 10px;
}

input[type="file"]::-webkit-file-upload-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="file"]::-webkit-file-upload-button:hover {
    background: #0a58ca;
}

/* Professional Badges */
.badge {
    padding: 0.5rem 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.badge.bg-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%) !important;
}

.badge.bg-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #48bb78 100%) !important;
}

.badge.bg-warning {
    background: linear-gradient(135deg, var(--warning-color) 0%, #f6ad55 100%) !important;
}

.badge.bg-danger {
    background: linear-gradient(135deg, var(--danger-color) 0%, #fc8181 100%) !important;
}

.badge.bg-info {
    background: linear-gradient(135deg, var(--info-color) 0%, #63b3ed 100%) !important;
}

.badge.bg-light {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--text-primary) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Declaration Section */
.declaration-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.declaration-section .form-check {
    background: var(--white);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
}

.declaration-section .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
}

.declaration-section .form-check-label {
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
}

/* Shadow Effects */
.shadow-lg {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

/* Text Colors */
.text-muted {
    color: #6c757d !important;
}

/* Border Colors */
.border-primary {
    border-color: var(--primary-color) !important;
}

.border-success {
    border-color: var(--success-color) !important;
}

.border-warning {
    border-color: var(--warning-color) !important;
}

.border-danger {
    border-color: var(--danger-color) !important;
}

/* Utility Classes */
.cursor-pointer {
    cursor: pointer;
}

.no-select {
    user-select: none;
}

/* Professional Look */
.professional-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

.professional-header h1 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.professional-header p {
    margin: 10px 0 0 0;
    font-size: 1.1rem;
}