/* BlockedDates Global Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #4C2121 0%, #6d2f2f 100%);
    color: white;
    padding: 30px 0;
    margin: -20px -20px 30px -20px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 15px rgba(76, 33, 33, 0.2);
}

.page-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    margin: 0;
    font-size: 2.2em;
    font-weight: 300;
    display: flex;
    align-items: center;
}

.page-title .icon {
    margin-right: 15px;
    font-size: 1.2em;
}

.breadcrumb {
    margin-top: 10px;
    opacity: 0.9;
    font-size: 0.9em;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

/* Main Layout - NO SIDEBAR, FULL WIDTH */
.main-content {
    display: block;
    width: 100%;
    margin-top: 0;
}

.main-content.with-sidebar {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

/* Quick Actions Bar - Horizontal */
.quick-actions-bar {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}

.quick-actions-left {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.quick-actions-right {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.quick-action-btn {
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    background: #fafbfc;
    text-decoration: none;
    color: #666;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
}

.quick-action-btn:hover {
    border-color: #4C2121;
    background: white;
    color: #4C2121;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 33, 33, 0.2);
}

.quick-action-btn.primary {
    background: linear-gradient(135deg, #4C2121 0%, #6d2f2f 100%);
    color: white;
    border-color: #4C2121;
}

.quick-action-btn.primary:hover {
    background: linear-gradient(135deg, #6d2f2f 0%, #8b3838 100%);
    color: white;
}

/* Sidebar - Only when needed */
.sidebar {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: fit-content;
    border: 1px solid #e9ecef;
}

.sidebar h4 {
    color: #4C2121;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.1em;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.sidebar h4::before {
    content: "⚡";
    margin-right: 8px;
}

.sidebar-item {
    display: block;
    padding: 12px 16px;
    margin-bottom: 8px;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.sidebar-item:hover {
    background: #f8f9fa;
    color: #4C2121;
    border-color: #4C2121;
    transform: translateX(5px);
}

.sidebar-item.edit {
    color: #007bff;
}

.sidebar-item.edit:hover {
    background: #e3f2fd;
    border-color: #007bff;
}

.sidebar-item.danger {
    color: #dc3545;
}

.sidebar-item.danger:hover {
    background: #f8d7da;
    border-color: #dc3545;
}

/* Form Containers */
.form-container, .detail-container {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

/* Two Column Form Layout */
.form-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

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

/* Form Sections */
.form-section {
    margin-bottom: 30px;
}

.form-section-title {
    color: #4C2121;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f3f4;
    display: flex;
    align-items: center;
}

.form-section-title::before {
    content: "📅";
    margin-right: 10px;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4C2121;
}

/* Form Controls */
.form-control, input[type="text"], input[type="email"], input[type="tel"],
input[type="date"], input[type="time"], select, textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s;
    background: #fafbfc;
    box-sizing: border-box;
}

.form-control:focus, input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #4C2121;
    background: white;
    box-shadow: 0 0 0 3px rgba(76, 33, 33, 0.1);
}

.form-control:hover, input:hover, select:hover, textarea:hover {
    border-color: #4C2121;
    background: white;
}

select.form-control, select {
    cursor: pointer;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    min-width: 120px;
    text-align: center;
    min-height: 50px;
    box-sizing: border-box;
}

.btn-primary {
    background: linear-gradient(135deg, #4C2121 0%, #6d2f2f 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 33, 33, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 33, 33, 0.4);
}

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

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
}

.btn-warning {
    background: #ffc107;
    color: #212529;
}

.btn-warning:hover {
    background: #e0a800;
    transform: translateY(-2px);
}

.btn-info {
    background: #17a2b8;
    color: white;
}

.btn-info:hover {
    background: #138496;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
    min-height: 56px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
    min-height: 40px;
}

/* Touch-optimized buttons */
.btn-touch {
    min-height: 44px;
    font-size: 16px;
    border-radius: 25px;
    margin: 5px 0;
}

/* Type Selection */
.type-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.type-option {
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #fafbfc;
}

.type-option:hover {
    border-color: #4C2121;
    background: white;
}

.type-option.selected {
    border-color: #4C2121;
    background: linear-gradient(135deg, #4C2121 0%, #6d2f2f 100%);
    color: white;
}

.type-option h5 {
    margin: 0 0 10px 0;
    font-size: 1.1em;
}

.type-option p {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Animated fields */
.time-field-animated {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.3s ease-out;
}

.time-field-animated.show {
    max-height: 200px;
    padding-top: 20px;
}

/* Form Actions */
.form-actions {
    border-top: 1px solid #e9ecef;
    padding-top: 25px;
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

/* Cards and Status */
.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.card-header {
    padding: 20px 25px;
    border-bottom: 1px solid #e9ecef;
    border-radius: 12px 12px 0 0;
    font-weight: 600;
}

.card-body {
    padding: 25px;
}

.card-footer {
    padding: 20px 25px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

/* Status Cards */
.status-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
    border: 2px solid #dee2e6;
}

.status-card.full-day {
    background: linear-gradient(135deg, #ffe6e6 0%, #ffcccc 100%);
    border-color: #dc3545;
}

.status-card.time-slot {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-color: #ffc107;
}

.status-icon {
    font-size: 3em;
    margin-bottom: 15px;
    display: block;
}

.status-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #4C2121;
}

.status-subtitle {
    color: #666;
    font-size: 1.1em;
}

/* Detail Grid */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.detail-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e9ecef;
}

.detail-label {
    font-weight: 600;
    color: #4C2121;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.detail-label .icon {
    margin-right: 8px;
    font-size: 1.2em;
}

.detail-value {
    font-size: 1.2em;
    color: #333;
    font-weight: 500;
}

.detail-value.large {
    font-size: 1.5em;
    font-weight: 600;
    color: #4C2121;
}

/* Badges */
.badge {
    background: #4C2121;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    display: inline-block;
}

.badge.full-day {
    background: #dc3545;
}

.badge.time-slot {
    background: #ffc107;
    color: #333;
}

/* Info Boxes */
.info-box {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
    color: #1565c0;
}

.info-box strong {
    display: block;
    margin-bottom: 5px;
}

.reason-section {
    background: #f1f3f4;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 4px solid #4C2121;
}

.reason-title {
    font-weight: 600;
    color: #4C2121;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.reason-title::before {
    content: "💬";
    margin-right: 8px;
}

.reason-text {
    font-size: 1.1em;
    color: #555;
    font-style: italic;
}

.timestamp-info {
    background: #e3f2fd;
    border-radius: 10px;
    padding: 15px;
    margin-top: 25px;
    font-size: 0.9em;
    color: #1565c0;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.table {
    width: 100%;
    margin-bottom: 0;
    background: white;
}

.table th,
.table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #4C2121;
    border-bottom: 2px solid #dee2e6;
}

.table tr:hover {
    background: #f8f9fa;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pagination li {
    margin: 0 2px;
}

.pagination a {
    display: block;
    padding: 10px 15px;
    color: #4C2121;
    text-decoration: none;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    transition: all 0.3s;
}

.pagination a:hover {
    background: #4C2121;
    color: white;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-content.with-sidebar {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sidebar {
        order: 2;
    }

    .form-container, .detail-container {
        padding: 20px;
    }

    .type-selection {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

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

    .card-body {
        padding: 15px;
    }

    .page-header {
        margin: -10px -10px 20px -10px;
        padding: 20px 0;
    }

    .page-title {
        font-size: 1.8em;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

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

    .quick-actions-left,
    .quick-actions-right {
        width: 100%;
        justify-content: center;
    }

    .quick-action-btn {
        flex: 1;
        justify-content: center;
    }
}

/* Mobile Calendar Specific Styles */
.mobile-calendar {
    padding: 15px;
    max-width: 100%;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.month-nav {
    background: linear-gradient(135deg, #4C2121 0%, #6d2f2f 100%);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 50%;
    font-size: 18px;
    min-width: 50px;
    min-height: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(76, 33, 33, 0.3);
}

.month-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 33, 33, 0.4);
}

.month-title {
    font-size: 1.4em;
    font-weight: 600;
    margin: 0;
    color: #4C2121;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    margin-bottom: 25px;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fafbfc;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 60px;
    position: relative;
    font-weight: 500;
}

.calendar-day:hover {
    background: #f1f3f4;
    border-color: #4C2121;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(76, 33, 33, 0.2);
}

.calendar-day.blocked-full {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border-color: #dc3545;
}

.calendar-day.blocked-partial {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #212529;
    border-color: #ffc107;
}

.calendar-day.today {
    border: 3px solid #4C2121;
    font-weight: 700;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.calendar-day.other-month {
    color: #adb5bd;
    background: #f8f9fa;
    opacity: 0.6;
}

.day-number {
    font-size: 16px;
    font-weight: 600;
}

.blocked-indicator {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dc3545;
    border: 2px solid white;
}

.weekday-header {
    text-align: center;
    font-weight: 700;
    padding: 15px 0;
    background: #4C2121;
    color: white;
    font-size: 14px;
    border-radius: 8px;
    margin-bottom: 5px;
}

.quick-actions {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.fab-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4C2121 0%, #6d2f2f 100%);
    color: white;
    border: none;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(76, 33, 33, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 15px;
}

.fab-button:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 33, 33, 0.5);
}

/* Modal Styles for Mobile */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.modal-header {
    background: linear-gradient(135deg, #4C2121 0%, #6d2f2f 100%);
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 25px;
    border-bottom: none;
}

.modal-header h5 {
    margin: 0;
    font-weight: 600;
    font-size: 1.3em;
}

.modal-body {
    padding: 30px;
}

.time-picker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.time-slot {
    padding: 15px 8px;
    text-align: center;
    background: #fafbfc;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-slot:hover {
    background: linear-gradient(135deg, #4C2121 0%, #6d2f2f 100%);
    color: white;
    border-color: #4C2121;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 33, 33, 0.3);
}

.time-slot.selected {
    background: linear-gradient(135deg, #4C2121 0%, #6d2f2f 100%);
    color: white;
    border-color: #4C2121;
}

.time-slot.blocked {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-close {
    filter: invert(1);
}

/* Alert Mobile */
.alert-mobile {
    position: fixed;
    top: 80px;
    left: 20px;
    right: 20px;
    z-index: 1055;
    border-radius: 15px;
    padding: 20px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    animation: slideInDown 0.5s ease-out;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Enhanced Form Controls for Mobile */
.form-control.mobile-optimized,
input.mobile-optimized,
select.mobile-optimized {
    padding: 18px 20px;
    font-size: 18px;
    border-radius: 15px;
    border: 3px solid #e9ecef;
    background: white;
    min-height: 56px;
}

.form-control.mobile-optimized:focus,
input.mobile-optimized:focus,
select.mobile-optimized:focus {
    border-color: #4C2121;
    box-shadow: 0 0 0 4px rgba(76, 33, 33, 0.15);
}

/* Enhanced Buttons for Mobile */
.btn.mobile-optimized {
    padding: 18px 25px;
    font-size: 18px;
    border-radius: 15px;
    min-height: 56px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Type Selection for Mobile */
.type-selection.mobile {
    gap: 20px;
    margin: 25px 0;
}

.type-option.mobile {
    padding: 25px 20px;
    border-radius: 20px;
    border: 3px solid #e9ecef;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.type-option.mobile:hover {
    border-color: #4C2121;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 33, 33, 0.2);
}

.type-option.mobile.selected {
    background: linear-gradient(135deg, #4C2121 0%, #6d2f2f 100%);
    border-color: #4C2121;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 33, 33, 0.4);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .mobile-calendar {
        padding: 10px;
    }

    .calendar-header {
        padding: 15px;
        margin-bottom: 20px;
    }

    .month-title {
        font-size: 1.2em;
    }

    .month-nav {
        padding: 12px 15px;
        min-width: 44px;
        min-height: 44px;
        font-size: 16px;
    }

    .calendar-day {
        min-height: 50px;
        border-radius: 8px;
    }

    .day-number {
        font-size: 14px;
    }

    .weekday-header {
        padding: 10px 0;
        font-size: 12px;
    }

    .fab-button {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .quick-actions {
        bottom: 20px;
        right: 20px;
    }

    .time-picker-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .time-slot {
        padding: 12px 6px;
        font-size: 14px;
        min-height: 44px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-header {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .calendar-grid {
        gap: 2px;
        padding: 10px;
    }

    .calendar-day {
        min-height: 45px;
    }

    .day-number {
        font-size: 12px;
    }

    .time-picker-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .month-title {
        font-size: 1.1em;
    }
}

/* Utilities */
.w-100 { width: 100%; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

/* Smooth transitions for all interactive elements */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button, .btn, input, select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
