/* Events Hall System - Main CSS */

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --sidebar-bg: #79a3c5;
    --card-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
    --btn-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    color: #333;
    font-size: 13px;
}

/* Login Page Styles */
.login-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 520px;
    padding: 32px 32px 24px 32px;
}

.login-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.login-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    overflow: hidden;
    position: relative;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 16px 0;
}

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

.login-card:hover::before {
    left: 100%;
}

.login-header h2 {
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

/* Form Styles */
.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 8px 10px;
    font-size: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 1);
}

.input-group-text {
    border-radius: 8px 0 0 8px;
    border: 2px solid #e9ecef;
    border-right: none;
    background: rgba(248, 249, 250, 0.9);
    color: #6c757d;
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 8px 8px 0;
}

.input-group .form-control:focus+.input-group-text,
.input-group .form-control:focus {
    border-color: var(--primary-color);
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}

.btn-outline-secondary {
    border-radius: 0 8px 8px 0;
    border: 2px solid #e9ecef;
    border-left: none;
    background: rgba(248, 249, 250, 0.9);
    color: #6c757d;
    transition: all 0.3s ease;
}

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

/* Card Styles */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

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

.card-header {
    padding: 10px 15px;
    border-bottom: 1px solid #e9ecef;
    background: rgba(255, 255, 255, 0.8);
}

.card-body {
    padding: 10px 15px;
}

.card-title {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

/* Stats Cards - Compact Version */
.stats-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.stats-card .icon {
    font-size: 2rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.stats-card h3 {
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 2px;
    position: relative;
    z-index: 1;
}

.stats-card p {
    font-weight: 500;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    font-size: 12px;
}

/* New Compact Stats Cards */
.stat-card {
    background: white;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

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

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 8px;
}

.stat-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: #2c3e50;
}

.stat-label {
    font-size: 11px;
    color: #6c757d;
    margin-bottom: 6px;
}

.stat-progress {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-progress .progress {
    flex: 1;
    height: 4px;
}

/* Sidebar Styles - Reduced Width */
.sidebar {
    background: var(--sidebar-bg);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    width: 200px;
    /* Reduced from default */
}

.sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.sidebar .nav-link {
    color: #ecf0f1;
    padding: 8px 12px;
    border-radius: 8px;
    margin: 3px 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 12px;
}

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

.sidebar .nav-link:hover::before {
    left: 100%;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Main Content */
.main-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    position: relative;
    padding: 10px;
    margin-left: 200px;
    /* Match sidebar width */
}

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

/* Page Title Box - Reduced Font Size */
.page-title-box {
    margin-bottom: 15px;
}

.page-title {
    font-size: 20px;
    /* Reduced from 24px */
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3px;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 11px;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Table Styles */
.table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    font-size: 12px;
}

.table thead th {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    font-weight: 600;
    padding: 8px 12px;
    font-size: 11px;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: scale(1.002);
}

.table tbody td {
    padding: 8px 12px;
    vertical-align: middle;
}

/* Badge Styles */
.badge {
    border-radius: 4px;
    padding: 3px 6px;
    font-weight: 600;
    font-size: 10px;
}

/* Progress Bar */
.progress {
    border-radius: 6px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
}

.progress-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 6px;
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    padding: 8px 12px;
    margin-bottom: 10px;
}

.alert-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #20c997 100%);
    color: white;
}

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

.alert-warning {
    background: linear-gradient(135deg, var(--warning-color) 0%, #fd7e14 100%);
    color: white;
}

.alert-info {
    background: linear-gradient(135deg, var(--info-color) 0%, #6f42c1 100%);
    color: white;
}

/* Dropdown Styles */
.dropdown-menu {
    border-radius: 8px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.dropdown-item {
    border-radius: 4px;
    margin: 1px 4px;
    transition: all 0.3s ease;
    padding: 6px 10px;
    font-size: 12px;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: translateX(2px);
}

/* Pagination */
.pagination {
    border-radius: 8px;
    overflow: hidden;
}

.page-link {
    border: none;
    padding: 6px 10px;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 12px;
}

.page-link:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: translateY(-1px);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.3s ease-in;
}

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

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

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

/* Glass Morphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        width: 180px;
    }

    .sidebar.show {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        padding: 8px;
    }

    .stats-card h3 {
        font-size: 1.3rem;
    }

    .stat-card h3 {
        font-size: 1.3rem;
    }

    .login-header h2 {
        font-size: 1.5rem;
    }

    .card-body {
        padding: 8px 12px;
    }

    .table thead th,
    .table tbody td {
        padding: 6px 8px;
        font-size: 11px;
    }
}

/* Avatar Styles */
.avatar-sm {
    width: 28px;
    height: 28px;
}

.avatar-md {
    width: 40px;
    height: 40px;
}

.avatar-lg {
    width: 52px;
    height: 52px;
}

/* Form Validation Styles */
.invalid-feedback {
    color: var(--danger-color);
    font-size: 10px;
    margin-top: 2px;
}

.form-control.is-invalid {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Demo Credentials Box */
.demo-credentials {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 8px;
    padding: 10px;
    margin-top: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.demo-credentials h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.demo-credentials small {
    color: #6c757d;
    line-height: 1.4;
    font-size: 11px;
}

.demo-credentials strong {
    color: var(--secondary-color);
}

/* Calendar Specific Styles */
.calendar-container {
    background: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: var(--card-shadow);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
}

.calendar-controls {
    display: flex;
    gap: 6px;
    align-items: center;
}

.calendar-view-toggles {
    display: flex;
    gap: 3px;
}

.calendar-view-toggles .btn {
    padding: 4px 8px;
    font-size: 10px;
    border-radius: 6px;
}

/* Search and Filter Section */
.search-filter-section {
    background: white;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: var(--card-shadow);
}

.search-filter-section .form-control {
    font-size: 11px;
    padding: 6px 8px;
}

.search-filter-section .btn {
    padding: 6px 12px;
    font-size: 11px;
}

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

.form-label {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #495057;
}

.form-label.required::after {
    content: ' *';
    color: var(--danger-color);
}

/* Compact Button Groups */
.btn-group .btn {
    padding: 4px 8px;
    font-size: 10px;
}

.btn-sm {
    padding: 4px 8px;
    font-size: 10px;
    border-radius: 6px;
}

/* Compact Modal */
.modal-content {
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.modal-header {
    padding: 10px 15px;
    border-bottom: 1px solid #e9ecef;
}

.modal-body {
    padding: 10px 15px;
}

.modal-footer {
    padding: 10px 15px;
    border-top: 1px solid #e9ecef;
}

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

.form-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e9ecef;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

/* Compact Actions */
.form-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
    margin-top: 12px;
}

/* Compact Card Actions */
.card-actions {
    display: flex;
    gap: 6px;
    align-items: center;
}

.card-actions .btn {
    padding: 4px 8px;
    font-size: 10px;
}

/* Compact Table Actions */
.btn-group .btn {
    padding: 3px 6px;
    font-size: 9px;
}

/* Compact Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

/* Compact Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.info-item {
    margin-bottom: 6px;
}

.info-label {
    font-size: 10px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.info-value {
    font-size: 12px;
    color: #495057;
    padding: 6px 8px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 2px solid var(--primary-color);
}

/* Compact Section Titles */
.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e9ecef;
}

/* Compact Alert Info */
.alert-info {
    padding: 8px 12px;
    font-size: 11px;
    margin-bottom: 10px;
}

/* Compact Pricing Table */
.pricing-table {
    font-size: 11px;
}

.pricing-table th,
.pricing-table td {
    padding: 6px 8px;
}

/* Compact Signature Section */
.signature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.signature-box {
    text-align: center;
    padding: 10px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
}

.signature-line {
    border-top: 1px solid #000;
    margin-top: 20px;
    padding-top: 6px;
    font-size: 10px;
}

/* --- Sidebar: Fixed Position --- */
.sidebar {
    background: #6849c0;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    z-index: 100;
    overflow-y: auto;
}

/* --- Main Content: Remove Extra Left Margin, Increase Font Size --- */
.main-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    position: relative;
    padding: 10px 0 10px 0;
    margin-left: 200px;
    /* Only margin-left for sidebar */
    font-size: 15px;
    /* Increased by 2px */
}

/* --- All Content Font Sizes Increased by 2px --- */
.main-content,
.main-content * {
    font-size: 15px;
}

/* --- Remove container left padding if any --- */
.container,
.container-fluid {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* --- Responsive: Sidebar fixed, main-content margin-left --- */
@media (max-width: 900px) {
    .sidebar {
        width: 160px;
    }

    .main-content {
        margin-left: 160px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .sidebar {
        position: absolute;
        width: 100vw;
        min-width: 0;
        z-index: 2000;
        left: 0;
        top: 0;
        height: 100vh;
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .sidebar.show {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        font-size: 13px;
    }
}

.stat-card-modern {
    display: flex;
    align-items: center;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(102, 126, 234, 0.10);
    padding: 18px 22px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: box-shadow 0.2s, transform 0.2s;
    min-height: 110px;
}

.stat-card-modern .stat-icon {
    font-size: 2.2rem;
    margin-right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.stat-card-modern .stat-content {
    flex: 1;
}

.stat-card-modern .stat-number {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 2px;
    color: #fff;
    letter-spacing: 1px;
}

.stat-card-modern .stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #f8f9fa;
    opacity: 0.92;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.stat-card-modern.bg-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.stat-card-modern.bg-info {
    background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
}

.stat-card-modern.bg-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-card-modern.bg-warning {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
}

.stat-card-modern:hover {
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.18);
    transform: translateY(-2px) scale(1.02);
}

.addonsCard,
.addonsName {
    font-size: 10px !important;
}