/*
|--------------------------------------------------------------------------
| ANMOL DIGITAL - Global Stylesheet
|--------------------------------------------------------------------------
| Theme: Light Black and White
| Primary: #2C2D2D
*/

:root {
    --app-primary: #2C2D2D;
    --app-primary-hover: #1f2020;
    --app-white: #ffffff;
    --app-bg: #f4f4f4;
    --app-soft-bg: #fafafa;
    --app-border: #e5e7eb;
    --app-border-dark: #d6d8dc;
    --app-text: #1f2937;
    --app-muted: #6b7280;
    --app-danger: #dc3545;
    --app-success: #198754;
    --app-warning: #ffc107;
    --app-info: #0dcaf0;
    --app-radius-sm: 8px;
    --app-radius: 14px;
    --app-radius-lg: 20px;
    --app-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
    --app-shadow-soft: 0 6px 18px rgba(17, 24, 39, 0.06);
    --sidebar-width: 270px;
    --topbar-height: 74px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--app-bg);
    color: var(--app-text);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
select,
textarea {
    font: inherit;
}

::selection {
    background: var(--app-primary);
    color: var(--app-white);
}

/* Auth */

.auth-body {
    background:
        radial-gradient(circle at top left, rgba(44, 45, 45, 0.14), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f3f4f6 50%, #eeeeee 100%);
}

.auth-page {
    width: 100%;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(229, 231, 235, 0.95);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
    padding: 34px;
}

.auth-brand {
    text-align: center;
    margin-bottom: 28px;
}

.auth-logo-wrap {
    width: 84px;
    height: 84px;
    margin: 0 auto 16px;
    border-radius: 22px;
    border: 1px solid var(--app-border);
    background: var(--app-white);
    display: grid;
    place-items: center;
    box-shadow: var(--app-shadow-soft);
    overflow: hidden;
}

.auth-logo {
    max-width: 68px;
    max-height: 68px;
    object-fit: contain;
}

.auth-logo-fallback {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--app-primary);
    color: var(--app-white);
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
}

.auth-brand h1 {
    margin: 0;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--app-primary);
}

.auth-brand p {
    margin: 8px 0 0;
    font-size: 14px;
    color: var(--app-muted);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-footer {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--app-border);
    text-align: center;
    font-size: 13px;
    color: var(--app-muted);
}

/* Forms */

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

.form-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--app-text);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border-radius: 12px;
    border-color: var(--app-border-dark);
    color: var(--app-text);
    min-height: 44px;
    box-shadow: none;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--app-primary);
    box-shadow: 0 0 0 0.18rem rgba(44, 45, 45, 0.14);
}

textarea.form-control {
    min-height: 110px;
    resize: vertical;
}

.form-text {
    color: var(--app-muted);
    font-size: 12px;
}

.input-icon-group {
    position: relative;
}

.input-icon-group .form-control {
    padding-left: 44px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--app-muted);
    z-index: 2;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: var(--app-muted);
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    z-index: 3;
}

.password-toggle:hover {
    background: #f1f3f5;
    color: var(--app-primary);
}

.invalid-feedback,
.valid-feedback {
    font-size: 12px;
}

/* Buttons */

.btn {
    border-radius: 12px;
    font-weight: 700;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.btn-sm {
    min-height: 32px;
    border-radius: 10px;
    font-size: 12px;
    padding: 5px 10px;
}

.btn-app-primary,
.btn-primary {
    background: var(--app-primary);
    border-color: var(--app-primary);
    color: var(--app-white);
}

.btn-app-primary:hover,
.btn-app-primary:focus,
.btn-primary:hover,
.btn-primary:focus {
    background: var(--app-primary-hover);
    border-color: var(--app-primary-hover);
    color: var(--app-white);
}

.btn-app-outline,
.btn-outline-primary {
    border-color: var(--app-primary);
    color: var(--app-primary);
    background: var(--app-white);
}

.btn-app-outline:hover,
.btn-outline-primary:hover {
    background: var(--app-primary);
    border-color: var(--app-primary);
    color: var(--app-white);
}

.btn-light {
    background: #f8f9fa;
    border-color: var(--app-border);
}

.btn-icon {
    width: 38px;
    height: 38px;
    padding: 0;
    display: inline-grid;
    place-items: center;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Alerts */

.app-alert {
    border-radius: 14px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-width: 1px;
}

.alert {
    border-radius: 14px;
}

/* App Layout */

.app-layout {
    min-height: 100vh;
    display: flex;
    background: var(--app-bg);
}

.app-sidebar {
    width: var(--sidebar-width);
    min-width: var(--sidebar-width);
    min-height: 100vh;
    background: var(--app-primary);
    color: var(--app-white);
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    transition: transform 0.24s ease;
}

.sidebar-brand {
    height: 82px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--app-white);
    display: grid;
    place-items: center;
    overflow: hidden;
    flex: 0 0 auto;
}

.sidebar-brand-logo img {
    max-width: 36px;
    max-height: 36px;
    object-fit: contain;
}

.sidebar-brand-title {
    min-width: 0;
}

.sidebar-brand-title h2 {
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.sidebar-brand-title span {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
}

.sidebar-menu {
    padding: 16px 12px 20px;
    overflow-y: auto;
    flex: 1;
}

.sidebar-menu::-webkit-scrollbar {
    width: 6px;
}

.sidebar-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.22);
    border-radius: 30px;
}

.sidebar-section-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 14px 12px 8px;
}

.sidebar-link {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, 0.76);
    padding: 10px 12px;
    border-radius: 13px;
    margin-bottom: 4px;
    font-weight: 650;
    font-size: 14px;
    transition: all 0.2s ease;
}

.sidebar-link i {
    font-size: 17px;
    width: 20px;
    text-align: center;
}

.sidebar-link:hover,
.sidebar-link.active {
    color: var(--app-primary);
    background: var(--app-white);
}

.sidebar-footer {
    padding: 14px 14px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logout {
    width: 100%;
    min-height: 42px;
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--app-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 750;
}

.sidebar-logout:hover {
    background: var(--app-white);
    color: var(--app-primary);
}

.sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.45);
    z-index: 1030;
}

.app-main {
    width: 100%;
    min-width: 0;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.app-topbar {
    height: var(--topbar-height);
    background: var(--app-white);
    border-bottom: 1px solid var(--app-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.topbar-left {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-menu-btn {
    display: none;
    border: 1px solid var(--app-border);
    background: var(--app-white);
    color: var(--app-primary);
    width: 42px;
    height: 42px;
    border-radius: 13px;
    align-items: center;
    justify-content: center;
}

.page-title-wrap {
    min-width: 0;
}

.page-title {
    margin: 0;
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -0.02em;
    color: var(--app-primary);
    line-height: 1.2;
}

.page-subtitle {
    margin: 4px 0 0;
    color: var(--app-muted);
    font-size: 13px;
}

.topbar-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.topbar-profile-img {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid var(--app-border);
    background: var(--app-soft-bg);
}

.topbar-profile-info {
    min-width: 0;
    text-align: right;
}

.topbar-profile-name {
    display: block;
    color: var(--app-primary);
    font-size: 14px;
    font-weight: 800;
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.topbar-profile-email {
    display: block;
    color: var(--app-muted);
    font-size: 12px;
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-content {
    flex: 1;
    width: 100%;
    padding: 24px;
}

.app-footer {
    border-top: 1px solid var(--app-border);
    background: var(--app-white);
    padding: 16px 24px;
    color: var(--app-muted);
    font-size: 13px;
}

/* Cards */

.app-card {
    background: var(--app-white);
    border: 1px solid var(--app-border);
    border-radius: var(--app-radius-lg);
    box-shadow: var(--app-shadow-soft);
}

.app-card-header {
    padding: 18px 20px;
    border-bottom: 1px solid var(--app-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.app-card-title {
    margin: 0;
    color: var(--app-primary);
    font-size: 17px;
    font-weight: 850;
}

.app-card-subtitle {
    margin: 4px 0 0;
    color: var(--app-muted);
    font-size: 13px;
}

.app-card-body {
    padding: 20px;
}

.search-card {
    margin-bottom: 18px;
}

.search-card .app-card-body {
    padding-bottom: 4px;
}

/* Dashboard Quick Actions */

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}

.quick-action-card {
    background: var(--app-white);
    border: 1px solid var(--app-border);
    border-radius: 18px;
    box-shadow: var(--app-shadow-soft);
    padding: 18px;
    min-height: 126px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.quick-action-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--app-shadow);
    border-color: var(--app-primary);
}

.quick-action-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: var(--app-primary);
    color: var(--app-white);
    display: grid;
    place-items: center;
    font-size: 21px;
    margin-bottom: 14px;
}

.quick-action-title {
    margin: 0;
    color: var(--app-primary);
    font-size: 15px;
    font-weight: 850;
}

.quick-action-text {
    margin: 5px 0 0;
    color: var(--app-muted);
    font-size: 12px;
    line-height: 1.45;
}

/* Tables */

.table-card {
    overflow: hidden;
}

.table-responsive {
    border-radius: 16px;
}

.app-table {
    margin: 0;
    vertical-align: middle;
    min-width: 860px;
}

.app-table thead th {
    background: #f8f9fa;
    color: var(--app-primary);
    border-bottom: 1px solid var(--app-border);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 850;
    padding: 12px 14px;
    white-space: nowrap;
}

.app-table tbody td {
    padding: 13px 14px;
    color: var(--app-text);
    border-bottom-color: var(--app-border);
    font-size: 14px;
}

.app-table tbody tr:hover {
    background: #fbfbfb;
}

.table-thumb {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--app-border);
    background: var(--app-soft-bg);
}

.table-title {
    font-weight: 800;
    color: var(--app-primary);
    margin: 0;
}

.table-subtitle {
    color: var(--app-muted);
    font-size: 12px;
    margin-top: 2px;
}

.empty-state {
    padding: 40px 18px;
    text-align: center;
    color: var(--app-muted);
}

.empty-state i {
    font-size: 34px;
    color: #c1c7d0;
    display: block;
    margin-bottom: 10px;
}

/* Badges */

.badge {
    font-weight: 800;
    padding: 6px 10px;
}

.badge.text-bg-warning {
    color: #3d2d00 !important;
}

/* Pagination */

.pagination-wrap {
    display: flex;
    justify-content: flex-end;
    padding: 16px 0 0;
}

.app-pagination {
    gap: 5px;
    flex-wrap: wrap;
}

.app-pagination .page-link {
    border-radius: 10px;
    border: 1px solid var(--app-border);
    color: var(--app-primary);
    min-width: 38px;
    min-height: 36px;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 800;
}

.app-pagination .page-item.active .page-link {
    background: var(--app-primary);
    border-color: var(--app-primary);
    color: var(--app-white);
}

.app-pagination .page-item.disabled .page-link {
    color: #a0a5ad;
    background: #f8f9fa;
}

/* Tabs */

.app-tabs {
    border-bottom: 1px solid var(--app-border);
    gap: 6px;
}

.app-tabs .nav-link {
    border: 0;
    border-radius: 12px 12px 0 0;
    color: var(--app-muted);
    font-weight: 800;
    padding: 11px 14px;
}

.app-tabs .nav-link.active {
    background: var(--app-primary);
    color: var(--app-white);
}

/* Service and Payment Tabs */

.service-tabs,
.payment-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.service-tabs .nav-link,
.payment-tabs .nav-link {
    border: 1px solid var(--app-border);
    border-radius: 14px;
    background: var(--app-white);
    color: var(--app-primary);
    font-weight: 800;
}

.service-tabs .nav-link.active,
.payment-tabs .nav-link.active {
    background: var(--app-primary);
    color: var(--app-white);
    border-color: var(--app-primary);
}

/* Release Wizard */

.release-wizard {
    background: var(--app-white);
    border: 1px solid var(--app-border);
    border-radius: var(--app-radius-lg);
    box-shadow: var(--app-shadow-soft);
    overflow: hidden;
}

.wizard-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-bottom: 1px solid var(--app-border);
    background: #f8f9fa;
}

.wizard-step-tab {
    padding: 15px 12px;
    text-align: center;
    color: var(--app-muted);
    font-weight: 850;
    font-size: 13px;
    border-right: 1px solid var(--app-border);
}

.wizard-step-tab:last-child {
    border-right: 0;
}

.wizard-step-tab.active {
    background: var(--app-primary);
    color: var(--app-white);
}

.wizard-step-panel {
    display: none;
    padding: 20px;
}

.wizard-step-panel.active {
    display: block;
}

.wizard-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    border-top: 1px solid var(--app-border);
    background: #fafafa;
}

/* Upload Progress */

.upload-box {
    border: 1px dashed var(--app-border-dark);
    border-radius: 16px;
    background: #fbfbfb;
    padding: 18px;
    transition: border-color 0.18s ease, background 0.18s ease;
}

.upload-box:hover {
    border-color: var(--app-primary);
    background: var(--app-white);
}

.upload-title {
    margin: 0 0 6px;
    font-weight: 850;
    color: var(--app-primary);
}

.upload-hint {
    margin: 0 0 12px;
    font-size: 12px;
    color: var(--app-muted);
}

.upload-progress {
    height: 12px;
    border-radius: 999px;
    background: #e9ecef;
    overflow: hidden;
    margin-top: 12px;
}

.upload-progress .progress-bar {
    background: var(--app-primary);
    color: var(--app-white);
    font-size: 10px;
    font-weight: 800;
}

.upload-status {
    margin-top: 8px;
    font-size: 12px;
    color: var(--app-muted);
}

.upload-status.success {
    color: var(--app-success);
    font-weight: 800;
}

.upload-status.error {
    color: var(--app-danger);
    font-weight: 800;
}

/* Modal Detail Grid */

.modal-content {
    border: 0;
    border-radius: 20px;
    box-shadow: 0 28px 80px rgba(17, 24, 39, 0.22);
}

.modal-header {
    border-bottom-color: var(--app-border);
}

.modal-footer {
    border-top-color: var(--app-border);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.detail-item {
    border: 1px solid var(--app-border);
    border-radius: 14px;
    padding: 12px;
    background: #fbfbfb;
}

.detail-label {
    display: block;
    color: var(--app-muted);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 4px;
}

.detail-value {
    color: var(--app-primary);
    font-size: 14px;
    font-weight: 750;
    overflow-wrap: anywhere;
}

/* Store Pills */

.store-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.store-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 5px 9px;
    border: 1px solid var(--app-border);
    background: var(--app-white);
    color: var(--app-primary);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.store-pill img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    border-radius: 50%;
}

.store-pill i {
    font-size: 15px;
}

.store-initial {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--app-primary);
    color: var(--app-white);
    display: inline-grid;
    place-items: center;
    font-size: 10px;
}

/* Utilities */

.text-muted-soft {
    color: var(--app-muted);
}

.min-w-0 {
    min-width: 0;
}

.fw-850 {
    font-weight: 850;
}

.nowrap {
    white-space: nowrap;
}

.break-anywhere {
    overflow-wrap: anywhere;
}

.section-gap {
    display: grid;
    gap: 18px;
}

.compact-row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
}

/* Responsive */

@media (max-width: 1199.98px) {
    .quick-actions-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    :root {
        --topbar-height: 70px;
    }

    .app-sidebar {
        transform: translateX(-100%);
    }

    body.sidebar-open .app-sidebar {
        transform: translateX(0);
    }

    body.sidebar-open .sidebar-backdrop {
        display: block;
    }

    .app-main {
        margin-left: 0;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .app-topbar {
        padding: 12px 16px;
    }

    .app-content {
        padding: 18px 16px;
    }

    .app-footer {
        padding: 14px 16px;
    }

    .quick-actions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .topbar-profile-info {
        display: none;
    }

    .wizard-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wizard-step-tab {
        border-bottom: 1px solid var(--app-border);
    }
}

@media (max-width: 767.98px) {
    .auth-page {
        padding: 16px;
    }

    .auth-card {
        padding: 24px;
        border-radius: 20px;
    }

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

    .page-subtitle {
        display: none;
    }

    .app-card-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .quick-actions-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .quick-action-card {
        min-height: 112px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .pagination-wrap {
        justify-content: center;
    }

    .wizard-steps {
        grid-template-columns: 1fr;
    }

    .wizard-step-tab {
        text-align: left;
        border-right: 0;
    }

    .wizard-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .wizard-actions .btn {
        width: 100%;
    }

    .service-tabs,
    .payment-tabs {
        flex-direction: column;
    }

    .service-tabs .nav-link,
    .payment-tabs .nav-link {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .app-content {
        padding: 14px 12px;
    }

    .app-topbar {
        padding: 10px 12px;
    }

    .topbar-profile-img {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .mobile-menu-btn {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .app-card-body,
    .wizard-step-panel {
        padding: 16px;
    }

    .app-card-header {
        padding: 16px;
    }

    .auth-brand h1 {
        font-size: 22px;
    }
}

/* Final overrides */

html,
body {
    overflow-x: hidden;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.app-content > *:last-child {
    margin-bottom: 0;
}

.year-picker-wrapper {
    position: relative;
}

.year-picker-input {
    cursor: pointer;
    padding-right: 48px;
    background-color: #fff;
}

.year-picker-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    background: #2C2D2D;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}

.year-picker-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 50;
    width: 100%;
    min-width: 280px;
    padding: 14px;
    border: 1px solid rgba(44, 45, 45, .16);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
    display: none;
}

.year-picker-panel.is-open {
    display: block;
}

.year-picker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.year-picker-header strong {
    font-size: .92rem;
    color: #2C2D2D;
}

.year-picker-nav {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(44, 45, 45, .16);
    border-radius: 10px;
    background: #fff;
    color: #2C2D2D;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.year-picker-nav:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.year-picker-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.year-picker-year {
    border: 1px solid rgba(44, 45, 45, .14);
    border-radius: 10px;
    background: #fff;
    color: #2C2D2D;
    font-weight: 800;
    padding: 9px 6px;
    text-align: center;
}

.year-picker-year:hover {
    border-color: #2C2D2D;
    background: rgba(44, 45, 45, .06);
}

.year-picker-year.is-selected {
    background: #2C2D2D;
    border-color: #2C2D2D;
    color: #fff;
}

.release-wizard,
.wizard-step-panel,
.app-content {
    overflow: visible !important;
}

.year-picker-wrapper {
    position: relative;
    z-index: 9999;
}

.year-picker-panel {
    z-index: 999999 !important;
    max-height: 430px;
    overflow: hidden;
}

.year-picker-grid {
    max-height: 330px;
    overflow-y: auto;
    padding-right: 4px;
}

.year-picker-grid::-webkit-scrollbar {
    width: 6px;
}

.year-picker-grid::-webkit-scrollbar-thumb {
    background: rgba(44, 45, 45, .35);
    border-radius: 10px;
}