/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Auth/Guest Visibility Utilities */

.auth-only,
.guest-only,
.verified-only {
    display: none;
}

body.is-logged-in .auth-only,
body.is-logged-in .verified-only {
    display: block;
}

body:not(.is-logged-in) .guest-only {
    display: block;
}

/* Verified elements need JS since isVerified is not on body yet, 
   but we can at least ensure they don't show for guests */
body:not(.is-logged-in) .verified-only {
    display: none !important;
}

/* FOUC Prevention for Navigation */
.nav-auth {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
}

body.nav-auth-ready .nav-auth {
    visibility: visible;
    opacity: 1;
}

.nav-wrapper {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
}

body {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    /* Light Gray Background */
    min-height: 100vh;
    color: #333;
    /* Dark Text */
    overflow-x: hidden;
}

/* Cloudflare Turnstile Custom Styling */
.cf-turnstile-oval {
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    /* Match auth-input border color */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Changed from inline-block to eliminate baseline space (ghost border) */
    max-width: 100%;
    height: 65px;
    /* Match standard Cloudflare Turnstile height */
    line-height: 0;
}

.cf-turnstile-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 1.5rem;
}

/* Navbar */
.navbar {
    background: rgba(225, 240, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem 0.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    gap: 2rem;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #1e293b;
    cursor: pointer;
    padding: 0.5rem;
}

.logo img {
    height: 36px;
    width: auto;
    transition: height 0.3s;
}

@media (max-width: 992px) {
    .main-content {
        padding: 90px 1.5rem 1.5rem;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        width: 100%;
    }

    .logo img {
        height: 32px;
    }

    .navbar {
        padding: 0.5rem 1rem;
    }

    .nav-toggle {
        display: block;
        order: 2;
    }

    .logo {
        order: 1;
    }

    .nav-wrapper {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: auto;
        background: white;
        display: flex;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid #f1f5f9;
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-wrapper.active {
        left: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        list-style: none;
        align-items: center;
        width: 100%;
        padding: 0;
    }

    .nav-links li a {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
        font-size: 1.1rem;
    }

    .nav-auth {
        display: flex;
        justify-content: center;
        padding-top: 1rem;
        border-top: 1px solid #f1f5f9;
        width: 100%;
    }

    .nav-auth ul {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        list-style: none;
        width: 100%;
        align-items: center;
        padding: 0;
    }

    .main-content {
        padding: 80px 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 28px;
    }
}

/* .nav-wrapper moved up to line 16 */

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
    justify-self: center;
}

.nav-auth {
    justify-self: end;
    display: flex;
    align-items: center;
}

.nav-auth ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    align-items: center;
}

.nav-links li a,
.nav-auth li a {
    color: #475569;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    white-space: nowrap !important;
    display: inline-block;
    border-radius: 12px;
}

/* Global Nav Button Base (Modern Style) */
.nav-btn-modern {
    border-radius: 50px !important;
    padding: 0.6rem 1.4rem !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-btn-modern i {
    font-size: 1.1rem;
}

/* Variant: Primary (Blue Gradient) */
.nav-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important;
}

.nav-btn-primary:hover,
.nav-btn-primary:active,
.nav-btn-primary:focus {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4) !important;
    color: white !important;
}

.nav-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3) !important;
}

/* Variant: Secondary (Blue Outline) */
.nav-btn-secondary {
    background: transparent !important;
    color: #3b82f6 !important;
    border: 1.5px solid #3b82f6 !important;
    box-shadow: none !important;
}

.nav-btn-secondary:hover,
.nav-btn-secondary:active,
.nav-btn-secondary:focus {
    background: #3b82f6 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2) !important;
}

.nav-btn-secondary:active {
    transform: translateY(0);
}

/* Variant: Danger (Red Outline/Solid) */
.nav-btn-danger {
    background: transparent !important;
    color: #ef4444 !important;
    border: 1.5px solid #ef4444 !important;
    box-shadow: none !important;
    padding: 0.5rem 1.2rem !important;
}

.nav-btn-danger:hover,
.nav-btn-danger:active,
.nav-btn-danger:focus {
    background: #ef4444 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2) !important;
}

.nav-btn-danger:active {
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 0.8rem;
    }

    .nav-links li a {
        padding: 0.5rem 0.6rem;
        font-size: 0.95rem;
    }
}

.nav-links li a:hover,
.nav-auth li a:not(.nav-btn-modern):hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000;
    border-radius: 8px;
}

/* Global Nav Classes and Main Content */

/* Main Content - Wider for Dashboards */
.main-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 2rem 2rem;
    width: 95%;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
        padding: 0 1rem;
    }

    .hero p {
        font-size: 1.1rem !important;
        padding: 0 1.5rem;
    }
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* White Band Section */
.white-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #ffffff;
    margin-top: 0;
    margin-bottom: 60px;
    /* Increased for corporate spacing */
    padding: 4rem 0;
    /* More generous vertical padding */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Cards */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    /* Increased depth */
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    /* Lift a bit more */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    /* Longer hover shadow */
    border-color: rgba(0, 0, 0, 0.1);
}

.card h3 {
    font-size: 1.5rem;
    /* Slightly smaller for balance */
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.card-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.card p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    flex: 1;
}

/* Buttons */
.glass-button {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    /* More modern rounding */
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    width: 100%;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.glass-button:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.5);
}

/* Forms */
.form-group {
    margin-bottom: 0.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: #475569;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: white;
    color: #1e293b;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group select option {
    background-color: white;
    color: #333;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

/* 2-Column Layout for Service Creation */
.form-container-grid {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.form-left-col {
    flex: 6.5;
    min-width: 0;
}

.form-right-col {
    flex: 3.5;
    min-width: 250px;
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 120px;
}

.service-info-panel h4 {
    margin-bottom: 1rem;
    color: #1e293b;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-info-content {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
}

.service-info-content ul {
    padding-left: 1.2rem;
    margin-top: 0.5rem;
}

.service-info-content li {
    margin-bottom: 0.4rem;
}

/* Service Card Preview */
.service-card-preview {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    margin-top: 1.5rem;
}

.service-card-preview .card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f1f5f9;
    /* Placeholder background */
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-preview .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-preview:hover .card-image {
    transform: scale(1.05);
}

.service-card-preview .card-body {
    padding: 1.25rem;
}

.service-card-preview .card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.service-card-preview .card-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card-preview .btn-details {
    display: block;
    width: 100%;
    padding: 0.6rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    background: #fff;
}

.service-card-preview .btn-details:hover {
    background: #eff6ff;
    border-color: #3b82f6;
}

@media (max-width: 992px) {
    .form-container-grid {
        flex-direction: column;
    }

    .form-right-col {
        width: 100%;
        position: static;
    }
}

/* Page Content */
.page-content {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    margin: 2rem auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 800px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Hidden */
.hidden {
    display: none !important;
}

/* Status badges */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.status-aktif {
    background: rgba(0, 255, 0, 0.3);
}

.status-tamamlandi {
    background: rgba(0, 0, 255, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.3s ease forwards;
}

/* Wizard Loading Overlay */
#wiz-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#wiz-loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.wiz-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.wiz-loading-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.5px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive */

/* Dashboard Layout */
.dashboard-container {
    display: flex;
    gap: 2.5rem;
    margin: 2rem auto 0 auto;
    width: 100%;
    align-items: flex-start;
    /* Ensure elements align to the top baseline */
}

/* Sidebar */
.sidebar {
    width: 300px;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: calc(100vh - 170px);
    position: sticky;
    top: 112px;
    /* Exactly 80px (navbar) + 32px (2rem margin) */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.sidebar-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-avatar {
    width: 90px;
    height: 90px;
    background: #f1f5f9;
    color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid white;
}

.sidebar-name {
    margin: 0.5rem 0 0 0;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.sidebar-role {
    margin: 0.2rem 0 0 0;
    opacity: 0.6;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
    /* Space for scrollbar */
}

/* Custom scrollbar for sidebar nav */
.sidebar-nav::-webkit-scrollbar {
    width: 4px;
}

.sidebar-nav::-webkit-scrollbar-track {
    background: transparent;
}

/* Scrollbar styling for sidebar */
.sidebar-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    color: #64748b;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    text-align: left;
    width: 100%;
    font-weight: 500;
}

.sidebar-btn:hover {
    background: #f8f9fa;
    color: #1e293b;
    transform: translateX(3px);
}

.sidebar-btn.active {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #dbeafe;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
}

.sidebar-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed !important;
    pointer-events: none;
    filter: grayscale(1);
}

.sidebar-btn.logout {
    margin-top: auto;
    background: #dc3545;
    color: white;
    border: 1px solid #dc3545;
    font-weight: 600;
    justify-content: center;
}

.sidebar-btn.logout:hover {
    background: #c82333;
    color: white;
    border-color: #bd2130;
}

/* Dashboard Content */
.dashboard-content {
    flex: 1;
    min-width: 0;
}

.content-section {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.content-section.active {
    display: block;
}

.content-section h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* Expectations List */
.expectations-list {
    list-style: none;
    margin-top: 1rem;
}

.expectations-list li {
    background: white;
    padding: 0.8rem 1rem;

    border-radius: 15px;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remove-btn {
    background: rgba(239, 68, 68, 0.5);
    border: none;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.85rem;
}

.remove-btn:hover {
    background: rgba(239, 68, 68, 0.8);
}

/* Request Cards - REFINED */
.request-card {
    background: white;
    backdrop-filter: none;

    padding: 1.8rem;
    border-radius: 24px;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.request-card:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.request-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
}

.request-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
}

.request-card p {
    margin-bottom: 0.8rem;
    color: #475569;
    font-size: 1.05rem;

    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Fix for modals: descriptive paragraphs should not be flex */
.modal .request-card p {
    display: block !important;
}

.request-card p strong {
    color: #334155;
    font-weight: 600;
    min-width: 80px;
}

/* Application Card */
.application-card {
    background: #f8fafc;
    padding: 1.2rem;
    border-radius: 16px;
    margin-top: 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.application-card.kabul {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

.application-card.red {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
}

.application-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
}

.btn-accept {
    background: rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.5);
}

.btn-accept:hover {
    background: rgba(16, 185, 129, 0.5);
}

.btn-reject {
    background: rgba(239, 68, 68, 0.3);
    border-color: rgba(239, 68, 68, 0.5);
}

.btn-reject:hover {
    background: rgba(239, 68, 68, 0.5);
}

/* Table Styles - CLEANER */
.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 1rem;
}

.data-table th {
    background: #f1f5f9;
    padding: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #475569;
    text-align: left;
    border-bottom: 2px solid #e2e8f0;
}

.data-table td {
    padding: 1.2rem;
    border-bottom: 1px solid #f1f5f9;
    font-size: 1rem;
    vertical-align: middle;
}

.data-table tr:hover td {
    background: #f8fafc;
}

.data-table tr:last-child td {
    border-bottom: none;
}

/* Status Badges */
.status-badge {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-aktif {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-tamamlandi {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-iptal {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-beklemede {
    background: rgba(245, 158, 11, 0.2);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-iade {
    background: rgba(249, 115, 22, 0.2);
    color: #fb923c;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.status-kabul {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-red {
    background: rgba(249, 115, 22, 0.2);
    color: #fb923c;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.alert-success {
    background: rgba(72, 187, 120, 0.3);
    border: 2px solid rgba(72, 187, 120, 0.5);
}

.alert-error {
    background: rgba(245, 101, 101, 0.3);
    border: 2px solid rgba(245, 101, 101, 0.5);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    opacity: 0.8;
}

/* Inline Button */
.btn-inline {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-primary {
    background: rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-primary:hover {
    background: rgba(59, 130, 246, 0.6);
}

/* Radio/Checkbox Group */
.radio-group {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-group input {
    width: auto;
    margin-right: 0.5rem;
}

/* Wallet Styles */
.wallet-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.wallet-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wallet-stat-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.wallet-stat-card.balance {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(37, 99, 235, 0.4) 100%);
    border-color: rgba(59, 130, 246, 0.4);
}

.wallet-stat-card.incoming {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.4) 0%, rgba(5, 150, 105, 0.4) 100%);
    border-color: rgba(16, 185, 129, 0.4);
}

.wallet-stat-card.outgoing {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.4) 0%, rgba(220, 38, 38, 0.4) 100%);
    border-color: rgba(239, 68, 68, 0.4);
}

.wallet-stat-title {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wallet-stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wallet-stat-icon {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2.5rem;
    opacity: 0.2;
}

.wallet-actions-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.wallet-btn-action {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.wallet-btn-withdraw {
    background: rgba(239, 68, 68, 0.6);
}

.wallet-btn-withdraw:hover {
    background: rgba(239, 68, 68, 0.8);
}

.wallet-filter-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wallet-date-input {
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.2);
    color: white;
}

.wallet-badge-incoming {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.wallet-badge-outgoing {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}


.wallet-mini-btn {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.wallet-mini-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* Wallet Grid Fix - Overriding previous grid styles */
.wallet-stats-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1.5rem !important;
    margin-bottom: 2rem;
    width: 100%;
}

.wallet-stat-card {
    flex: 1 1 300px !important;
    /* Grow, Shrink, Basis */
    min-width: 250px;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center;
    position: relative;
    padding-right: 1rem;
    /* Space for icon */
}

/* Specific layout for Balance card to accommodate button */
.wallet-stat-card.balance {
    padding-right: 1rem;
}

.wallet-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.wallet-mini-btn {
    position: static !important;
    /* Remove absolute if present */
    margin-left: auto;
    /* Push to right */
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    height: fit-content;
    white-space: nowrap;
}

/* Footer */
.main-footer {
    background: rgba(225, 240, 255, 0.95);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Utility for responsive flex stacking */
.flex-stack {
    display: flex;
    gap: 1rem;
}

.flex-stack-sm {
    display: flex;
    gap: 0.5rem;
}

@media (max-width: 768px) {

    .flex-stack,
    .flex-stack-sm {
        flex-direction: column;
    }

    .flex-stack>*,
    .flex-stack-sm>* {
        width: 100% !important;
    }

    .request-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.8rem;
    }

    .request-header>div,
    .request-header>h3 {
        width: 100% !important;
        text-align: left !important;
        justify-content: flex-start !important;
    }

    .application-card>div {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }
}

/* Navbar Items Overrides moved to Global Modern Sections */

/* FAQ Section */
.faq-container {
    margin-top: 5rem;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.faq-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.8rem;
}

.faq-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.faq-category {
    margin-bottom: 1.5rem;
}

.faq-category-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eff6ff;
}

.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #334155;
    user-select: none;
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    font-size: 1.3rem;
    color: #3b82f6;
    transition: transform 0.3s;
}

.faq-item.active {
    border-color: #3b82f6;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: #ef4444;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease;
    padding: 0 1.5rem;
    color: #475569;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
}

.faq-tip {
    margin-top: 4rem;
    background: #fdf2f8;
    border: 1px dashed #f472b6;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #9d174d;
}

.faq-tip i {
    font-size: 1.8rem;
    color: #ec4899;
}

.faq-tip strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

/* FAQ Mobile Responsiveness */
@media (max-width: 768px) {
    .faq-container {
        margin-top: 3rem;
        padding: 0 0.5rem;
    }

    .faq-header h2 {
        font-size: 1.8rem;
    }

    .faq-header p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .faq-category-title {
        font-size: 1.2rem;
        flex-wrap: wrap;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-question span {
        padding-right: 0.8rem;
        line-height: 1.5;
    }

    .faq-question i {
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .faq-answer {
        padding: 0 1rem;
        font-size: 0.9rem;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 1rem;
    }

    .faq-tip {
        flex-direction: column;
        padding: 1rem;
    }

    .faq-tip i {
        font-size: 1.5rem;
    }

    .faq-tip strong {
        font-size: 1rem;
    }

    .faq-tip p {
        font-size: 0.85rem;
    }

    .white-section {
        padding: 2.5rem 0 !important;
        /* Adjusted for corporate feel on mobile */
        margin-bottom: 30px;
    }
}

/* =========================================
   CORPORATE AUTHENTICATION STYLES (Register/Login)
   ========================================= */

.auth-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background: #f8fafc;
    /* Slate-50 background */
}

.auth-card {
    background: #ffffff;
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    box-shadow: 0 20px 40px -4px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

/* Decorative top bar */
.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6, #0ea5e9);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.auth-header p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Modern Role Switcher */
.auth-role-switch {
    display: flex;
    background: #f1f5f9;
    padding: 0.35rem;
    border-radius: 14px;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.auth-role-tab {
    flex: 1;
    text-align: center;
    padding: 0.8rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-role-tab.active {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06);
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.auth-role-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
    color: #334155;
}

/* Input Styles */
.auth-input-group {
    margin-bottom: 1.25rem;
}

.auth-input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
    margin-left: 0.2rem;
}

.auth-input {
    width: 100%;
    padding: 0.9rem 1rem;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #1e293b;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    /* Inner slight shadow */
}

.auth-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
}

.auth-input::placeholder {
    color: #94a3b8;
}

/* Account Type Cards */
.auth-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.auth-type-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-type-card:hover {
    border-color: #94a3b8;
    background: #f8fafc;
}

.active-type-card {
    border-color: #3b82f6 !important;
    background: #eff6ff !important;
}


/* Buttons */
.auth-btn {
    width: 100%;
    padding: 1rem;
    background: #3b82f6;
    /* Brand Blue */
    color: white;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.5);
}

.auth-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.auth-btn-secondary {
    background: #f1f5f9;
    color: #475569;
    box-shadow: none;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-btn-secondary:hover {
    background: #e2e8f0;
    color: #1e293b;
    box-shadow: none;
    transform: translateY(-1px);
}

/* Date Selects */
.auth-date-row {
    display: flex;
    gap: 0.5rem;
}

.auth-date-select {
    flex: 1;
    padding: 0.9rem;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    background: white;
    cursor: pointer;
    color: #334155;
}

/* Checkboxes */
.auth-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.auth-checkbox-group input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.2rem;
    cursor: pointer;
    accent-color: #3b82f6;
}

.auth-checkbox-group label {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #64748b;
    cursor: pointer;
}

.auth-checkbox-group a {
    color: #3b82f6;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Form Footer Links */
.auth-footer-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Helpers */
.auth-hidden {
    display: none;
}

/* Auth Alert Boxes - For integrated form messages */
.auth-alert-container {
    margin-bottom: 1.5rem;
    animation: fadeIn 0.4s ease-out;
}

.auth-alert {
    padding: 1rem 1.25rem;
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    border: 1px solid;
    line-height: 1.4;
}

.auth-alert-error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.auth-alert-warning {
    background: #fffbeb;
    border-color: #fde68a;
    color: #92400e;
}

.auth-alert-icon {
    font-size: 1.25rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.auth-alert-content {
    flex: 1;
}

.auth-alert-content h4 {
    font-weight: 700;
    margin: 0 0 0.2rem 0;
    font-size: 0.95rem;
}

.auth-alert-content p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
}

/* Unified Search Bar Styles */
.unified-search-bar {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0.4rem;
    border-radius: 50px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.unified-search-bar:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.unified-search-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none !important;
    background: transparent !important;
    font-size: 1rem;
    outline: none !important;
    color: #1e293b;
    box-sizing: border-box;
    min-width: 0;
}

.unified-search-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.2s;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
}


.unified-search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

/* Wallet Date Input Improvements */
.wallet-date-input {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.6rem 0.8rem;
    font-family: inherit;
    font-size: 0.95rem;
    color: #1e293b;
    transition: all 0.2s ease;
    outline: none;
    cursor: pointer;
    max-width: 200px !important;
    /* Prevent it from being too wide on desktop */
}

.wallet-date-input:focus {
    border-color: #3b82f6;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.flex-side-by-side-mobile {
    display: flex;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

@media (max-width: 768px) {
    .flex-side-by-side-mobile {
        flex-direction: column;
        align-items: stretch;
    }

    .date-input-group {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.3rem !important;
    }

    .date-input-group label {
        min-width: 100% !important;
        margin: 0 !important;
    }

    .flex-stack-sm {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important; /* Vertically center children */
        gap: 0.5rem !important;
        flex-wrap: wrap;
    }

    .flex-stack-sm > span {
        line-height: 1 !important;
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
    }

    .flex-stack-sm button,
    .flex-stack-sm .glass-button {
        margin: 0 !important;
    }

    .flex-stack-sm > * {
        width: auto !important;
    }
}

@media (max-width: 480px) {
    .unified-search-bar {
        padding: 0.25rem;
    }

    .unified-search-btn {
        padding: 0.72rem 1.2rem;
        font-size: 0.85rem;
        margin-left: 0.2rem;
    }
}

@media (max-width: 992px) {
    .dashboard-container {
        flex-direction: column !important;
        gap: 1.5rem;
    }

    .sidebar {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 32px 32px 0 0 !important;
        position: static !important;
        height: auto !important;
        padding: 1.5rem !important;
        top: auto !important;
        z-index: 1;
    }

    .dashboard-content {
        width: 100% !important;
        position: relative;
        z-index: 1;
        padding: 0 0.5rem; /* Additional breathing room for mobile */
    }

    .sidebar-header {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .sidebar-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .main-content {
        padding: 90px 1rem 1.5rem !important;
        width: 100% !important;
    }

    .auth-wrapper {
        padding: 3rem 0;
        /* Keep some vertical padding */
        justify-content: center;
        align-items: center;
    }

    .auth-card {
        border-radius: 0;
        max-width: 100% !important;
        width: 100% !important;
        border-left: none;
        border-right: none;
        margin-left: 0;
        margin-right: 0;
    }
}