/* --- admin/pages/process/index.blade.php --- */
body {
    background-color: #f8f9fa;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#myTable_wrapper {
    padding: 2rem;
}

.container-xl {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-header {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 24px 32px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.process-header h1 {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.total-amount {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
}

.filter-section {
    background: #fff;
    border: 1px solid #e0e0e0;
    margin-bottom: 24px;
}

.filter-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-header:hover {
    background: #e9ecef;
}

.filter-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.filter-content {
    padding: 24px;
}

.filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.filter-group {
    margin-bottom: 0;
}

.filter-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.filter-input,
.filter-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
    color: #333;
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.filter-checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
}

.filter-checkbox input[type="checkbox"] {
    margin-right: 8px;
}

.filter-checkbox label {
    font-size: 14px;
    color: #333;
    margin: 0;
    cursor: pointer;
}

.filter-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.filter-btn {
    padding: 8px 16px;
    background: #6c757d;
    color: #fff;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

.filter-btn:hover {
    background: #5a6268;
}

.table-section {
    background: #fff;
    border: 1px solid #e0e0e0;
}

.table-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.table-actions {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 8px 16px;
    border: 1px solid #007bff;
    background: #fff;
    color: #007bff;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    background: #007bff;
    color: #fff;
}

.btn-primary {
    background: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
}

.table-container {
    padding: 0;
}

/* --- Unified Premium Table Styles --- */
.table-responsive {
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    margin-bottom: 1.5rem;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.table th {
    background: #f8fafc;
    color: #64748b;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 1.5rem;
    border-bottom: 2px solid #e2e8f0;
    vertical-align: middle;
}

.table td {
    padding: 1rem 1.5rem;
    vertical-align: middle;
    color: #334155;
    font-size: 0.875rem;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
}

.table tbody tr {
    transition: background-color 0.2s ease;
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.table tbody tr:hover {
    background-color: #fcfcfc;
}

.table.table-bordered th,
.table.table-bordered td {
    border: 1px solid #e2e8f0;
}

.table.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f8fafc;
}

.table tbody tr.selected {
    background: #e3f2fd;
    border-left: 3px solid #007bff;
}

.modal-content {
    border: 1px solid #e0e0e0;
    background: #fff;
}

.modal-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 24px;
}

.modal-title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.modal-body {
    padding: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
    color: #333;
}

.form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.btn-secondary {
    background: #6c757d;
    color: #fff;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background: #5a6268;
    border-color: #5a6268;
}

/* --- Modern DataTables Stylling --- */
.dataTables_wrapper {
    padding: 1rem 0;
    font-family: 'Inter', sans-serif;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
    margin-bottom: 1.5rem;
}

.dataTables_wrapper .dataTables_length select {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.5rem 2rem 0.5rem 1rem;
    font-size: 0.875rem;
    color: #475569;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    appearance: none;
    -webkit-appearance: none;
}

.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #475569;
    background-color: #ffffff;
    transition: all 0.2s;
    min-width: 250px;
}

.dataTables_wrapper .dataTables_filter input:focus {
    outline: none;
    border-color: #633f2a;
    box-shadow: 0 0 0 3px rgba(99, 63, 42, 0.1);
}

.dataTables_wrapper .dataTables_info {
    font-size: 0.875rem;
    color: #64748b;
    padding-top: 1rem;
}

.dataTables_wrapper .dataTables_paginate {
    padding-top: 1rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #475569 !important;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #f1f5f9 !important;
    border-color: #cbd5e1;
    color: #1e293b !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #633f2a !important;
    border-color: #633f2a;
    color: #ffffff !important;
    font-weight: 600;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    cursor: default;
    color: #94a3b8 !important;
    border: 1px solid #f1f5f9;
    background: #f8fafc !important;
    box-shadow: none;
}


@media (max-width: 768px) {
    .filter-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .filter-checkbox-group {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .table-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .table-actions {
        width: 100%;
        justify-content: stretch;
    }

    .btn {
        flex: 1;
    }
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 90%;
    max-width: 800px;
}

.card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card p {
    margin: 5px 0;
}

.label {
    color: #6c757d;
    font-size: 14px;
}

.value {
    color: #212529;
    font-size: 26px;
    font-weight: bold;
}

/* --- admin/pages/authentication/login.blade.php --- */
/* Reset & Base */
.login-body-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f3f4f6;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Logic (User Requested) */
.login-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(274deg, rgba(99, 62, 41, 0.95) 0%, rgba(138, 93, 67, 0.85) 100%), url('https://urgup.bel.tr/assets/img/footerbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Main Container */
.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1.5rem;
}

/* Card Design */
.login-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 480px;
    padding: 2.5rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Typography */
.login-logo {
    height: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.welcome-title {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
}

.welcome-subtitle {
    color: #6b7280;
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* Form Elements */
.login-form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-control-custom {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #d1d5db;
    background-color: #f9fafb;
    color: #1f2937;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.form-control-custom:focus {
    outline: none;
    border-color: #633f2a;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(99, 63, 42, 0.1);
}

/* Button */
.btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #633f2a;
    color: white;
    font-weight: 600;
    padding: 0.875rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
    margin-top: 1rem;
}

.btn-login:hover {
    background-color: #7c4e33;
    transform: translateY(-1px);
}

.btn-login:active {
    transform: translateY(0);
}

/* Links */
.link-primary-custom {
    color: #633f2a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.link-primary-custom:hover {
    color: #8a5d43;
    text-decoration: underline;
}

.bottom-links {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
}

.bottom-links a {
    margin: 0 0.5rem;
}

/* Alerts */
.alert-custom {
    background-color: #fef2f2;
    border: 1px solid #fee2e2;
    color: #b91c1c;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* --- admin/pages/users/card.blade.php --- */
.card-content {
    width: 900px;
    position: relative;

}

.card-content input {
    border: none;
    /* çerçeve görünmesin */
    background: transparent;
    /* arka plan şeffaf */
    font-size: 13px;
    /* yazı büyüsün */
    width: 400px;
}

.card-content .name {
    position: absolute;
    top: 160px;
    left: 90px;
}

.card-content .school {
    position: absolute;
    top: 160px;
    left: 300px;
}

.card-content .id-number {
    position: absolute;
    top: 210px;
    left: 90px;
}

.card-content .department {
    position: absolute;
    top: 210px;
    left: 300px;
}

.card-content .logo {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 110px;
    /* görsel genişliği */
    height: 120px;
    /* orantılı yükseklik */
    object-fit: cover;
}

/* --- admin/pages/otobus_islemleri/index.blade.php --- */
#myTable {
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.otobus-islemleri .dataTables_wrapper .dataTables_length,
.otobus-islemleri .dataTables_wrapper .dataTables_filter,
.otobus-islemleri .dataTables_wrapper .dataTables_info,
.otobus-islemleri .dataTables_wrapper .dataTables_processing,
.otobus-islemleri .dataTables_wrapper .dataTables_paginate {
    margin: 10px 0;
}

.otobus-islemleri .dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0.375rem 0.75rem;
    margin-left: 2px;
    border-radius: 0.375rem;
}

.otobus-islemleri .dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #633f2a !important;
}

.otobus-islemleri tfoot th {
    background-color: #f8f9fa;
    font-weight: bold;
    border-top: 2px solid #dee2e6;
}

#total-amount {
    font-size: 1.1em;
    color: #633f2a;
}

.otobus-islemleri .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #633f2a !important;
    color: white !important;
}

.otobus-islemleri .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.otobus-islemleri .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: white !important;
}

/* --- admin/pages/addWallet/index.blade.php --- */
.gradientPrimary {
    background: linear-gradient(135deg, #5a382a 0%, #7d5646 50%, #3e2723 100%);
    border-radius: 12px;
}

.font-size-18 {
    font-size: 18px;
}

.card-custom {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.btn-custom {
    background: #5a382a;
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
}

.btn-custom:hover {
    background: #7d5646;
    color: #fff;
}

/* --- admin/pages/cardQuery/index.blade.php --- */
.cardScanBG {
    border-radius: 20px;
    width: 100%;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(109.6deg, rgb(168 67 67) 11.2%, rgb(168 67 86) 100.2%);
    flex-direction: column;
}

.scanKard {
    margin-top: 2rem;
    width: 20%;
}

.cardScanBG .card {
    display: none;
    width: 380px;
    height: 230px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    z-index: 1;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: relative;
}

.visa_logo {
    float: right;
    padding: 10px;
}

.visa_logo img {
    width: 10rem;
    height: auto;

}

.visa_info {
    padding: 10px;
    margin: 10px 0;
}

.visa_info img {
    width: 60px;
    height: 45px;
}

.visa_info p {
    font-size: 22px;
    padding: 10px 0;
    letter-spacing: 2px;
    color: #ffffff;
}

.visa_crinfo {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    color: #ffffff;
}

/* --- admin/pages/users/userDetail.blade.php --- */
:root {
    --user-detail-primary: #4e73df;
    --user-detail-secondary: #6f42c1;
    --user-detail-success: #1cc88a;
    --user-detail-light-bg: #f8f9fc;
    --user-detail-dark-text: #5a5c69;
}

.profile-card {
    border-radius: 15px;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    overflow: hidden;
    transition: transform 0.3s;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-header {
    background: linear-gradient(135deg, #e79262, #a66400);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
}

.avatar-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.avatar-container h4 {
    color: white;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: var(--user-detail-primary);
}

.status-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: var(--user-detail-success);
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e3e6f0;
    align-items: center;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--user-detail-dark-text);
    flex: 1;
}

.info-value {
    flex: 1;
    text-align: right;
    color: var(--user-detail-dark-text);
    font-weight: 500;
}

.chart-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    padding: 1.5rem;
    height: 100%;
}

.transaction-table {
    background: white;
    border-radius: 15px;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    overflow: hidden;
}

.user-detail-table-header {
    background: linear-gradient(135deg, var(--user-detail-primary), var(--user-detail-secondary));
    color: white;
    padding: 1rem 1.5rem;
}

.transaction-table th {
    background-color: #eaecf4;
    color: var(--user-detail-dark-text);
    font-weight: 700;
    padding: 0.75rem;
}

.badge-success {
    background-color: var(--user-detail-success);
}

.section-title {
    color: var(--user-detail-dark-text);
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--user-detail-primary);
    display: inline-block;
}

@media (max-width: 768px) {
    .profile-avatar {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .chart-container {
        margin-top: 2rem;
    }
}

/* --- admin/pages/dashboard/index.blade.php --- */
:root {
    --brand-color: #633f2a;
    --brand-light: #8a5d43;
    --text-dark: #374151;
    --text-muted: #9ca3af;
    --bg-light: #f9fafb;
}

.dashboard-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
}

.section-title {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0;
}

.dashboard-banner {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(99, 63, 42, 0.95), rgba(138, 93, 67, 0.9));
    z-index: 10;
}

.banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.banner-content {
    position: relative;
    z-index: 20;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-wrapper {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.logo-wrapper img {
    width: 3rem;
    height: 3rem;
}

.banner-title {
    font-size: 1.875rem;
    color: white;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.025em;
}

.banner-subtitle {
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
}

.date-badge {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(8px);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #e5e7eb;
}

.icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.icon-blue {
    background: #eff6ff;
    color: #2563eb;
}

.icon-orange {
    background: #fff7ed;
    color: #ea580c;
}

.icon-purple {
    background: #faf5ff;
    color: #9333ea;
}

.stat-content {
    margin-top: 0.75rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.card-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-btn-dashboard {
    font-size: 0.75rem;
    background: #f9fafb;
    color: #4b5563;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    border: none;
    transition: background 0.2s;
}

.filter-btn-dashboard:hover {
    background: #f3f4f6;
}

.bottom-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .bottom-stats-grid {
        grid-template-columns: 1fr;
    }
}

.bottom-stat-card {
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.primary-stat {
    background: var(--brand-color);
    color: white;
}

.primary-stat .bg-icon {
    position: absolute;
    right: -10px;
    top: -10px;
    opacity: 0.1;
    font-size: 3rem;
    transition: opacity 0.3s;
}

.primary-stat:hover .bg-icon {
    opacity: 0.2;
}

.white-stat {
    background: white;
    border: 1px solid #f3f4f6;
}

.small-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.icon-green {
    background: #f0fdf4;
    color: #16a34a;
}

.icon-indigo {
    background: #eef2ff;
    color: #4f46e5;
}

.bottom-stat-label {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.bottom-stat-label.text-dark {
    color: #9ca3af;
    font-weight: 600;
    opacity: 1;
}

.bottom-stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.bottom-stat-value.text-dark {
    color: #1f2937;
}

.bottom-stat-value.large {
    font-size: 1.25rem;
}

.bottom-stat-value.small-text {
    font-size: 0.875rem;
    word-break: break-word;
}

.bottom-stat-sub {
    font-size: 0.75rem;
    color: #9ca3af;
}

.right-panel-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-action-card {
    display: block;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.large-card {
    height: 12rem;
}

.small-card {
    height: 9rem;
    border: 1px solid #f3f4f6;
}

.card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.quick-action-card:hover .card-bg {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}

.card-content-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1rem;
}

.icon-circle {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0.75rem;
}

.card-title {
    font-size: 1.25rem;
    color: white;
    font-weight: 700;
    margin: 0;
}

.card-title-small {
    font-size: 0.875rem;
    color: white;
    font-weight: 600;
    margin: 0;
}

.card-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    margin-bottom: 0;
}

.support-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: 1px solid #e5e7eb;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: #4b5563;
    transition: all 0.3s;
}

.support-btn:hover {
    border-color: var(--brand-color);
    color: var(--brand-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.support-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.support-icon-box {
    padding: 0.5rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    transition: background 0.3s;
}

.support-btn:hover .support-icon-box {
    background: rgba(99, 63, 42, 0.1);
}

.support-logo {
    height: 1.25rem;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.support-btn:hover .support-logo {
    filter: grayscale(0%);
}

.support-text {
    display: flex;
    flex-direction: column;
}

.support-title {
    font-weight: 700;
    font-size: 0.875rem;
}

.support-subtitle {
    font-size: 0.75rem;
    color: #9ca3af;
}

.support-arrow {
    color: #d1d5db;
    transition: color 0.3s;
}

.support-btn:hover .support-arrow {
    color: var(--brand-color);
}

.badge-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    display: inline-block;
}

.bg-primary {
    background-color: #3b82f6 !important;
}

.bg-warning {
    background-color: #f97316 !important;
}

.bg-purple {
    background-color: #a855f7 !important;
}

.text-sm {
    font-size: 0.875rem;
}

.fw-semibold {
    font-weight: 600;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-800 {
    color: #1f2937;
}

.recent-tx-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.recent-tx-item:last-child {
    border-bottom: none;
}

.tx-icon-wrapper {
    width: 2.25rem;
    height: 2.25rem;
    background: #fdf2f8;
    color: #db2777;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    margin-right: 0.75rem;
}

.tx-details {
    flex-grow: 1;
}

.tx-user {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

.tx-meta {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.125rem;
}

.tx-amount {
    font-weight: 700;
    font-size: 0.875rem;
    color: #1f2937;
}

.text-brand {
    color: var(--brand-color);
}

.origin-left {
    transform-origin: left;
}

.scale-75 {
    transform: scale(0.75);
}

/* --- admin/pages/otobusler/show.blade.php --- */
.profile-container {
    max-width: 1440px;
    margin: 30px auto;
    padding: 20px;
}

.page_icon {
    color: #FFF !important;
    background: #633f2a;
    padding: 7px;
    border-radius: 50%;
    font-size: 18px;
}

h2.section-title-otobusler {
    font-size: 22px;
    font-weight: bold;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card-gray {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.stat-card-gray:hover {
    transform: translateY(-5px);
}

.stat-card-gray p {
    margin: 5px 0;
}

.stat-title {
    font-size: 14px;
    color: #888;
}

.stat-value {
    font-size: 22px;
    font-weight: bold;
}

.blue-text {
    color: #2980b9;
}

.green-text {
    color: #27ae60;
}

.indigo-text {
    color: #8e44ad;
}

.red-text {
    color: #c0392b;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 10px;
}

.custom-table th,
.custom-table td {
    padding: 12px 15px;
    text-align: left;
}

.custom-table thead {
    background: #f4f6f8;
    border-bottom: 2px solid #ddd;
}

.custom-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.custom-table tbody tr:hover {
    background: #fafafa;
}

.tahsilat-form {
    display: flex;
    gap: 15px;
    align-items: end;
}

.tahsilat-form label {
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

.tahsilat-form input,
.tahsilat-form button {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.tahsilat-form button {
    background: #2980b9;
    color: #fff;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.tahsilat-form button:hover {
    background: #1c5985;
}

.empty-message {
    text-align: center;
    padding: 30px;
    color: #888;
}

.empty-message i {
    font-size: 26px;
    margin-bottom: 10px;
    display: block;
    color: #bbb;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

.form-group-item {
    width: 20%;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    z-index: 9999;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification.error {
    background: #dc3545;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

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

/* --- admin/pages/otobusler/geneltahsilat.blade.php --- */
.genel-tahsilat h1,
.genel-tahsilat h2 {
    margin: 20px 0;
    font-weight: 600;
    color: #222;
}

.genel-tahsilat .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.genel-tahsilat .card {
    background: linear-gradient(135deg, #f8f9fa, #eef1f5);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.genel-tahsilat .card strong {
    display: block;
    margin-top: 8px;
    font-size: 20px;
    color: #633f2a;
}

.genel-tahsilat .card::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: #633f2a24;
    border-radius: 50%;
}

.genel-tahsilat-form {
    background: #fff;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.genel-tahsilat-form input,
.genel-tahsilat-form button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.genel-tahsilat-form button {
    background: #28a745;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.genel-tahsilat-form button:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.genel-tahsilat-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.genel-tahsilat-table thead {
    background: #633f2a;
    color: #fff;
}

.genel-tahsilat-table th,
.genel-tahsilat-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 14px;
}

.genel-tahsilat-table tbody tr:hover {
    background: #f8f9fa;
}

.genel-tahsilat .pagination {
    margin: 25px 0;
    display: flex;
    justify-content: center;
}

.genel-tahsilat .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.genel-tahsilat .box {
    background: #fff;
    border-left: 4px solid #633f2a;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    transition: all 0.2s ease;
}

.genel-tahsilat .box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.genel-tahsilat .box div:first-child {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    color: #633f2a;
}

.genel-tahsilat .box div {
    margin-bottom: 6px;
}

/* --- admin/pages/otobusler/index.blade.php --- */
.otobus-list-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.card-custom-otobus {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
    padding: 24px;
    margin-bottom: 40px;
}

.card-custom-otobus h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111827;
}

.otobus-form-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.otobus-form-group input,
.otobus-form-group select {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
}

.otobus-form-group button {
    padding: 10px 18px;
    border: none;
    background: #633f2a;
    color: #fff;
    font-weight: 600;
}

/* --- Otobus Pages (Minimalist Fix) --- */

.otobus-container,
.guzergah-container,
.otobus-islemleri {
    padding: 1.5rem;
    background-color: #fafaf9;
    min-height: 100vh;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.title,
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

/* Card Custom Override for Minimalism */
.card-custom {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.card-custom h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Forms */
.form-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.form-group input,
.otobus-box input,
.guzergah-table input {
    padding: 0.6rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    background-color: #f8fafc;
    transition: all 0.2s;
    outline: none;
    color: #334155;
}

.form-group input:focus,
.otobus-box input:focus,
.guzergah-table input:focus {
    border-color: #3b82f6;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group button,
.btn-primary {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.form-group button:hover,
.btn-primary:hover {
    background-color: #2563eb;
}

/* Otobus Grid */
.otobus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.otobus-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.otobus-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

/* Button Groups & Actions */
.btn-group,
.actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.btn-edit,
.btn-delete,
.btn-profile {
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.2s;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-edit {
    background-color: #10b981;
    /* Emerald */
    color: white;
}

.btn-delete {
    background-color: #ef4444;
    /* Red */
    color: white;
}

.btn-profile {
    background-color: #6366f1;
    /* Indigo */
    color: white;
}

.btn-edit:hover,
.btn-delete:hover,
.btn-profile:hover {
    opacity: 0.9;
}

/* Unified Premium Table Styles (Aliases) */
.guzergah-container table,
.otobus-islemleri table,
.minimal-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.guzergah-container th,
.otobus-islemleri th,
.minimal-table th {
    background: #f8fafc;
    color: #64748b;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 1.5rem;
    border-bottom: 2px solid #e2e8f0;
    text-align: left;
    vertical-align: middle;
}

.guzergah-container td,
.otobus-islemleri td,
.minimal-table td {
    padding: 1rem 1.5rem;
    vertical-align: middle;
    color: #334155;
    font-size: 0.875rem;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
}

.guzergah-container tr:last-child td,
.otobus-islemleri tr:last-child td,
.minimal-table tr:last-child td {
    border-bottom: none;
}

.guzergah-container tr:hover,
.otobus-islemleri tr:hover,
.minimal-table tr:hover {
    background-color: #fcfcfc;
}

.otobus-stat {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-right: 4px;
}

/* --- admin/pages/cardScanner/index.blade.php --- */
.scanner-inputs {
    height: 50px;
    font-size: 16px;
}

.card-header .card-title-scanner {
    flex-direction: column;
}

#scanInput-scanner {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.symbol-label-scanner i {
    line-height: 0;
}

/* --- admin/pages/otobus_bakiyesi/index.blade.php --- */
.userWallet-bakiye {
    font-weight: 800;
    font-size: 20px;
}

.gradientPrimary-bakiye {
    background: linear-gradient(90deg, rgba(98, 63, 43, 1) 0%, rgba(138, 97, 76, 1) 50%, rgba(84, 48, 41, 1) 100%);
}

.card-info-group-bakiye {
    border: 1px solid #633f2ad9;
    border-radius: 18px;
    background: #fff;
}

.info-box-group-bakiye {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 30px;
    justify-content: space-between;
}

.info-box-bakiye {
    flex: 1 1 40%;
    min-width: 180px;
    background: #f8f5f2;
    border: 1.5px solid #e0d6ce;
    border-radius: 14px;
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(99, 63, 42, 0.04);
    cursor: pointer;
}

.info-box-bakiye:hover {
    box-shadow: 0 6px 18px rgba(99, 63, 42, 0.18);
    transform: translateY(-4px) scale(1.03);
    border-color: #633f2a;
}

.info-icon-bakiye {
    font-size: 2rem;
    color: #633f2a;
    margin-bottom: 8px;
}

.info-title-bakiye {
    font-size: 1rem;
    color: #72594a;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-value-bakiye {
    font-size: 1.15rem;
    color: #633f2a;
    font-weight: 700;
    word-break: break-all;
}

#balanceTable-bakiye {
    background: #fff;
    border-collapse: collapse;
    border: 1px solid #e0d6ce;
    border-radius: 12px;
    overflow: hidden;
    font-size: 0.95rem;
}

#balanceTable-bakiye th,
#balanceTable-bakiye td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

#balanceTable-bakiye th {
    background: #f7f2ed;
    color: #5a4030;
    font-weight: 600;
    cursor: pointer;
}

#balanceTable-bakiye tr:hover {
    background-color: #fcf9f6;
}

#searchInput-bakiye {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #e0d6ce;
    background-color: #fdfaf7;
    width: 300px !important;
}

/* --- admin/layouts/parts/loader.blade.php --- */
#loader-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
    flex-direction: column;
    gap: 35px;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top-color: #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- Minimalist & Premium User Detail Page --- */
.user-detail-container {
    padding: 1.5rem;
    font-family: 'Inter', -apple-system, sans-serif;
    color: #334155;
    background-color: #fafaf9;
}

/* Compact Header */
.profile-minimal-header {
    background: white;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.minimal-user-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.minimal-avatar {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #633f2a;
}

.minimal-user-meta h1 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    color: #1e293b;
}

.minimal-user-meta p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0.25rem 0 0;
    font-weight: 500;
}

.header-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-minimal {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

/* Grid System */
.minimal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card-minimal {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.stat-data .label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.15rem;
}

.stat-data .value {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
}

/* Action Section */
.minimal-action-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.compact-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.compact-card-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.compact-card-header h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: #334155;
}

.compact-card-body {
    padding: 1.25rem;
}

/* Form Minimalist */
.minimal-form .form-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.minimal-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.minimal-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border: 1.5px solid #f1f5f9;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.2s;
}

.minimal-input:focus {
    outline: none;
    border-color: #633f2a;
    background: white;
    box-shadow: 0 0 0 3px rgba(99, 63, 42, 0.08);
}

.btn-minimal-submit {
    width: 100%;
    padding: 0.75rem;
    background: #633f2a;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 1rem;
    cursor: pointer;
    transition: filter 0.2s;
}

.btn-minimal-submit:hover {
    filter: brightness(1.15);
}

/* Tables Minimalist */
.minimal-table-wrapper {
    background: white;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    margin-bottom: 1.5rem;
    overflow: hidden;
}


/* Badge Refined */
.badge-minimal {
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .minimal-action-layout {
        grid-template-columns: 1fr;
    }

    .profile-minimal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Button & Inputs Styling overlap cleanup */
.modern-input {
    border: 2px solid #f1f5f9 !important;
}

.modern-input:focus {
    border-color: #633f2a !important;
}