/**
 * VMS - Main Stylesheet
 */

/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --light-bg: #ecf0f1;
    --dark-text: #2c3e50;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: transparent;
}

/* ============================================
   Container & Layout
   ============================================ */
html, body {
    height: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-footer {
    margin-top: auto;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    margin: 10px 0;
    min-height: 44px;
    background: transparent;
    border: 1px solid #dfe6e9;
    border-radius: var(--radius);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.back-btn:hover {
    background: var(--light-bg);
    border-color: #b2bec3;
}

.back-btn svg {
    flex-shrink: 0;
}

/* ============================================
   Header
   ============================================ */
.main-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius);
    margin-top: 20px;
    box-shadow: var(--shadow);
}

.logo h1 {
    font-size: 28px;
    display: inline-block;
}

.logo span {
    font-size: 14px;
    opacity: 0.8;
    margin-left: 10px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav .nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.main-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.main-nav .logout {
    background: var(--danger-color);
}

.main-nav .logout:hover {
    background: #c0392b;
}

.main-nav .cta-primary {
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    padding: 8px 20px;
}

.main-nav .cta-primary:hover {
    background: #2980b9;
}

.main-nav .cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 6px 18px;
}

.main-nav .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    color: var(--white);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================
   Mobile Sidebar - Modern Drawer
   ============================================ */
.mobile-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 280px;
    max-width: 85%;
    height: 100%;
    background: var(--white);
    box-shadow: 4px 0 32px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
}

body.sidebar-open .mobile-sidebar { left: 0; }
body.sidebar-open .mobile-sidebar-overlay { opacity: 1; visibility: visible; }

/* ── Profile Card ─────────────────────────────── */
.sidebar-profile {
    background: linear-gradient(135deg, var(--primary-color), #1a252f);
    padding: 28px 20px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.sidebar-profile::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-color);
}

.sidebar-avatar-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: 12px;
}

.sidebar-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 3px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.sidebar-avatar:hover {
    border-color: var(--secondary-color);
}

.sidebar-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-avatar-initials {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
    user-select: none;
}

.sidebar-avatar-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid var(--primary-color);
    transition: background 0.2s ease, transform 0.2s ease;
    font-size: 12px;
}

.sidebar-avatar-badge:hover {
    background: #2196f3;
    transform: scale(1.1);
}

.sidebar-user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-user-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.sidebar-user-role {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Close Button Row ─────────────────────────── */
.sidebar-top-bar {
    display: flex;
    justify-content: flex-end;
    padding: 12px 16px 0;
}

.sidebar-close {
    background: transparent;
    border: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: var(--dark-text);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.sidebar-close:hover {
    background: #f0f0f0;
}

/* ── Navigation Items ─────────────────────────── */
.mobile-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px 20px;
    flex: 1;
}

.mobile-sidebar-nav .nav-link {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    color: var(--dark-text);
    background: transparent;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    visibility: visible !important;
    opacity: 1 !important;
    text-decoration: none !important;
    font-size: 14.5px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    border-left: 3px solid transparent;
}

.mobile-sidebar-nav .nav-link i {
    width: 20px;
    text-align: center;
    font-size: 15px;
    color: #7f8c9b;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.mobile-sidebar-nav .nav-link:hover {
    background: #f0f4f8;
    border-left-color: var(--secondary-color);
}

.mobile-sidebar-nav .nav-link:hover i {
    color: var(--secondary-color);
}

.mobile-sidebar-nav .nav-link:active {
    background: #e3edf7;
    transform: scale(0.98);
}

.mobile-sidebar-nav .nav-link.register-link {
    background: var(--secondary-color);
    color: var(--white);
    border-left-color: transparent;
    font-weight: 600;
    margin-top: 8px;
}

.mobile-sidebar-nav .nav-link.register-link i {
    color: var(--white);
}

.mobile-sidebar-nav .nav-link.register-link:hover {
    background: #2196f3;
    border-left-color: transparent;
}

.mobile-sidebar-nav .logout {
    background: #fdf0f0;
    color: var(--danger-color);
    border-left-color: var(--danger-color);
    font-weight: 600;
    margin-top: 8px;
}

.mobile-sidebar-nav .logout i {
    color: var(--danger-color);
}

.mobile-sidebar-nav .logout:hover {
    background: #fce4e4;
}

.mobile-sidebar-nav .logout:active {
    background: #f8d0d0;
}

/* ── Sidebar Responsive Breakpoints ───────────── */
@media (max-width: 768px) {
    .mobile-sidebar-nav .nav-link {
        min-height: 46px;
        padding: 12px 14px;
        font-size: 14px;
    }
}


/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--secondary-color), #2ecc71);
    color: var(--white);
    padding: 60px 40px;
    border-radius: var(--radius);
    margin: 30px 0;
    text-align: center;
    box-shadow: var(--shadow);
}

.hero-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.btn-primary {
    background: var(--white);
    color: var(--secondary-color);
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: #2980b9;
}

.btn-success {
    background: var(--success-color);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-success:hover {
    background: #219a52;
}

.btn-danger {
    background: var(--danger-color);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-danger:hover {
    background: #c0392b;
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: 40px 0;
}

.features h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-card p {
    color: #666;
    font-size: 14px;
}

/* ============================================
   Modal
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background: var(--white);
    margin: 10% auto;
    padding: 40px;
    max-width: 400px;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
}

.close-btn:hover {
    color: var(--danger-color);
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #ddd;
    border-radius: var(--radius);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.error-message {
    color: var(--danger-color);
    margin-top: 10px;
    font-size: 14px;
}

.success-message {
    color: var(--success-color);
    margin-top: 10px;
    font-size: 14px;
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 13px;
}

.main-footer p {
    margin: 5px 0;
}

/* ============================================
   Admin Dashboard Styles
   ============================================ */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-card .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-card .stat-label {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

.table-container {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin: 20px 0;
    overflow-x: auto;
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
}

.table-container th {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 15px;
    text-align: left;
}

.table-container td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

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

.status-active {
    background: var(--success-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.status-inactive {
    background: var(--danger-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.status-pending {
    background: var(--warning-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.status-terminated {
    background: #95a5a6;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.status-completed {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.status-expired {
    background: #95a5a6;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.btn-small {
    padding: 4px 10px;
    font-size: 12px;
}

.text-muted {
    color: #95a5a6;
    font-size: 13px;
}

/* ============================================
   Map Container
   ============================================ */
#map {
    height: 500px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 20px 0;
}

.map-status {
    font-size: 13px;
    color: #888;
    margin-top: -10px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    #map {
        height: 300px;
    }
}

/* ============================================
   Ambient Background Animation
   ============================================ */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        135deg,
        #f5f7fa 0%,
        #eef1f8 15%,
        #f0eef5 30%,
        #e8eff5 45%,
        #f2f0f8 60%,
        #eef3f6 75%,
        #f4f1f7 90%,
        #f5f7fa 100%
    );
    background-size: 300% 300%;
    animation: ambientShift 30s ease-in-out infinite;
    will-change: background-position;
    pointer-events: none;
}

@keyframes ambientShift {
    0%   { background-position: 0% 0%; }
    25%  { background-position: 100% 0%; }
    50%  { background-position: 100% 100%; }
    75%  { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
}

@media (prefers-reduced-motion: reduce) {
    body::before {
        animation: none;
        background-size: 100% 100%;
    }
}

@media (prefers-contrast: more) {
    body::before {
        animation: none;
        background: #ffffff;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .main-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 12px 15px;
    }

    .main-nav {
        display: none;
    }

    .welcome-text {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-header .logo {
        flex: 1;
        min-width: 0;
    }

    .main-header .logo h1 {
        font-size: 20px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .main-header .logo span {
        display: none;
    }

    .hero-content h2 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero {
        padding: 30px 15px;
        margin: 15px 0;
    }

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

    .modal-content {
        margin: 20% 15px;
        padding: 20px;
    }

    .dashboard-stats {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-charts {
        grid-template-columns: 1fr;
    }

    .mobile-sidebar {
        width: 85%;
        max-width: 300px;
    }

    .mobile-sidebar-nav .nav-link {
        min-height: 44px;
        padding: 10px 14px;
        font-size: 14px;
    }

    .container {
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 10px 12px;
    }

    .main-header .logo h1 {
        font-size: 17px;
    }

    .hero-content h2 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero {
        padding: 25px 12px;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 16px;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .stat-card .stat-number {
        font-size: 28px;
    }

    .mobile-sidebar {
        width: 80%;
        max-width: 280px;
    }

    .mobile-sidebar-nav .nav-link {
        min-height: 48px;
        padding: 12px 14px;
        font-size: 15px;
    }

    .modal-content {
        margin: 15% 10px;
        padding: 15px;
    }
}

@media (max-width: 360px) {
    .main-header .logo h1 {
        font-size: 15px;
    }

    .hero-content h2 {
        font-size: 18px;
    }

    .hero {
        padding: 20px 10px;
    }

    .mobile-sidebar {
        width: 85%;
        max-width: 260px;
    }

    .mobile-sidebar-nav .nav-link {
        min-height: 50px;
        padding: 14px 12px;
        font-size: 14px;
    }

    .dashboard-stats {
        gap: 12px;
    }

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

@media (max-width: 320px) {
    .main-header .logo h1 {
        font-size: 14px;
    }

    .hero-content h2 {
        font-size: 16px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .mobile-sidebar {
        width: 90%;
        max-width: 240px;
    }

    .mobile-sidebar-nav .nav-link {
        min-height: 52px;
        padding: 14px 10px;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 15px;
    }
}

/* ============================================
   Authentication Pages
   ============================================ */
body.auth-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}

body.auth-page .main-header {
    width: 100%;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0;
}

body.auth-page .auth-container {
    margin: 40px 20px 20px;
}

.auth-container {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 100%;
    padding: 40px 35px;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 28px;
    color: #667eea;
}

.logo-container h1 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.tagline {
    color: #666;
    font-size: 14px;
    margin: 5px 0 15px 0;
}

.auth-header h2 {
    font-size: 24px;
    color: #2c3e50;
    margin: 10px 0 5px 0;
}

.subtitle {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.auth-form .form-group {
    margin-bottom: 18px;
}

.auth-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.auth-form label i {
    color: #667eea;
    width: 18px;
}

.auth-form input[type="checkbox"] {
    width: auto;
}

.auth-form input[type="checkbox"]:focus {
    box-shadow: none;
}

.auth-form input,
.auth-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.auth-form input:focus,
.auth-form select:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
    background: #ffffff;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #667eea;
    font-size: 18px;
    padding: 5px;
}

/* ============================================
   Dashboard Charts and Reports
   ============================================ */
.dashboard-charts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.chart-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.chart-card h3 {
    margin: 0 0 15px 0;
    color: #2c3e50;
}

.chart-card canvas {
    height: 240px;
}

.chart-card .no-data-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: #999;
    font-size: 14px;
    border: 2px dashed #e0e0e0;
    border-radius: 10px;
    margin-top: 10px;
}

.chart-canvas-wrapper {
    position: relative;
    height: 240px;
    width: 100%;
}

.action-bar {
    margin: 10px 0 25px 0;
}

.table-controls {
    margin-bottom: 12px;
}

.table-filter {
    width: 100%;
    max-width: 320px;
    padding: 10px 12px;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    font-size: 14px;
}

/* ============================================
   Form Rows for Multi-column Layout
   ============================================ */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

/* Driver License Grade Badge */
.license-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    color: white;
    background: #667eea;
}

.license-badge.A { background: #e74c3c; }
.license-badge.B { background: #f39c12; }
.license-badge.C { background: #27ae60; }
.license-badge.D { background: #3498db; }
.license-badge.E { background: #9b59b6; }
.license-badge.F { background: #1abc9c; }
.license-badge.G { background: #95a5a6; }

/* ============================================
   Registration Wizard (Multi-Step Form)
   ============================================ */
.form-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
    padding: 0 10px;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 10px;
    background: #f0f0f5;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.step-indicator.active {
    background: #667eea;
    color: #fff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35);
}

.step-indicator .step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.25);
    color: inherit;
    flex-shrink: 0;
}

.step-indicator:not(.active) .step-num {
    background: #ddd;
    color: #888;
}

.step-indicator .step-label {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.step-connector {
    width: 60px;
    height: 3px;
    background: #ddd;
    margin: 0 4px;
    border-radius: 2px;
    flex-shrink: 0;
}

.step-indicator.active ~ .step-connector {
    background: #667eea;
}

.step-panel {
    display: block;
    animation: fadeIn 0.35s ease;
}

.step-panel.hidden {
    display: none;
}

.hidden {
    display: none !important;
}

.step-title {
    font-size: 15px;
    color: #888;
    margin-bottom: 20px;
    font-weight: 500;
}

.step-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.step-actions .btn-primary,
.step-actions .btn-secondary {
    flex: 1;
    text-align: center;
}

.field-help {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 4px;
    line-height: 1.4;
}

#step1Next {
    margin-top: 8px;
}

@media (max-width: 480px) {
    .step-indicator {
        padding: 6px 10px;
    }

    .step-indicator .step-label {
        font-size: 11px;
    }

    .step-indicator .step-num {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .step-connector {
        width: 30px;
    }

    .step-actions {
        flex-direction: column;
        gap: 10px;
    }

    .step-title {
        font-size: 14px;
    }
}

/* ============================================
   Auth Pages - Mobile Responsive
   ============================================ */
@media (max-width: 768px) {
    body.auth-page {
        padding: 0;
        padding-top: 0;
    }

    body.auth-page .auth-container {
        margin: 20px 15px;
        padding: 25px 20px;
        border-radius: 16px;
    }

    .auth-header {
        margin-bottom: 20px;
    }

    .logo-container {
        font-size: 24px;
    }

    .logo-container h1 {
        font-size: 26px;
    }

    .auth-header h2 {
        font-size: 20px;
    }

    .auth-form label {
        font-size: 13px;
    }

    .auth-form input,
    .auth-form select {
        font-size: 16px;
        padding: 10px 12px;
    }

    .auth-features {
        display: none;
    }
}

@media (max-width: 480px) {
    body.auth-page {
        padding: 0;
    }

    body.auth-page .auth-container {
        margin: 15px;
        padding: 20px 15px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .logo-container h1 {
        font-size: 22px;
    }

    .auth-header h2 {
        font-size: 18px;
    }

    .tagline {
        font-size: 12px;
    }

    .auth-form input,
    .auth-form select {
        padding: 12px 12px;
    }

    .btn-primary {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }

    .auth-form .checkbox-group .checkbox-label {
        font-size: 12px;
        line-height: 1.4;
        gap: 8px;
    }

    .auth-form .checkbox-group .checkbox-label input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }

    .auth-form .field-help {
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    body.auth-page {
        padding: 0;
    }

    body.auth-page .auth-container {
        margin: 10px;
        padding: 15px 12px;
        border-radius: 10px;
    }

    .logo-container {
        font-size: 20px;
        gap: 6px;
    }

    .logo-container h1 {
        font-size: 20px;
    }

    .auth-header h2 {
        font-size: 16px;
    }

    .auth-form label {
        font-size: 12px;
        gap: 5px;
    }

    .auth-form label i {
        font-size: 12px;
    }

    .auth-form input,
    .auth-form select {
        padding: 11px 10px;
        font-size: 15px;
    }

    .password-wrapper .toggle-password {
        right: 8px;
        font-size: 16px;
    }
}

@media (max-width: 320px) {
    body.auth-page .auth-container {
        padding: 12px 10px;
    }

    .logo-container h1 {
        font-size: 18px;
    }

    .auth-header h2 {
        font-size: 15px;
    }

    .auth-form input,
    .auth-form select {
        font-size: 14px;
        padding: 10px 8px;
    }
}

/* ============================================
   Driver Dashboard Styles
   ============================================ */
.contract-info {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px;
    margin: 20px 0;
}

.contract-info h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.info-card {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

.info-row .label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.info-row.highlight {
    background: #f0f7ff;
    padding: 12px;
    border-radius: var(--radius);
    border-bottom: none;
    margin-top: 5px;
}

.info-row.highlight .balance {
    font-weight: 700;
    color: var(--danger-color);
    font-size: 18px;
}

.quick-actions {
    margin: 25px 0;
}

.quick-actions h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.action-card {
    display: block;
    background: var(--white);
    padding: 20px 15px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    text-decoration: none;
    color: var(--dark-text);
    transition: var(--transition);
}

.action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.action-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.action-card h3 {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.action-card p {
    font-size: 12px;
    color: #666;
}

.transactions {
    margin: 25px 0;
}

.transactions h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.no-contract .alert-info {
    background: #eaf4ff;
    border: 1px solid #b3d9ff;
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}

.onboarding-section {
    margin: 25px 0;
}

.driver-name {
    text-transform: capitalize;
}

.alert-warning {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: var(--radius);
    padding: 14px 18px;
    margin: 15px 0;
    color: #856404;
    font-size: 14px;
}

.onboarding-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.onboarding-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.step.completed {
    border-left: 4px solid #27ae60;
}

.step.active {
    border-left: 4px solid var(--secondary-color);
    background: #eaf4ff;
}

.step.pending {
    border-left: 4px solid #dfe6e9;
    opacity: 0.7;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.step.completed .step-number {
    background: #27ae60;
    color: #fff;
}

.step.active .step-number {
    background: var(--secondary-color);
    color: #fff;
}

.step.pending .step-number {
    background: #dfe6e9;
    color: #888;
}

.step-content h3 {
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--dark-text);
}

.step-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.onboarding-help {
    margin-top: 20px;
    padding: 16px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: var(--radius);
    text-align: center;
}

.onboarding-help p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.alert-info h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.btn-primary.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    display: inline-block;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.auth-footer {
    text-align: center;
    margin-top: 15px;
}

.auth-footer a {
    color: var(--secondary-color);
    font-weight: 600;
}

.checkbox-group {
    margin: 15px 0;
}

.checkbox-group .checkbox-label {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    cursor: pointer;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #555;
    white-space: normal;
}

.checkbox-group .checkbox-label .checkbox-text {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.checkbox-group .checkbox-label input[type="checkbox"] {
    width: auto;
    min-width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.auth-features {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.auth-features h3 {
    text-align: center;
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 16px;
    flex-shrink: 0;
}

.password-strength {
    margin-top: 8px;
}

.strength-bar {
    height: 4px;
    width: 0;
    background: #e0e0e0;
    border-radius: 2px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.strength-text {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
    display: block;
}

.alert {
    padding: 12px 15px;
    border-radius: var(--radius);
    margin-bottom: 15px;
    font-size: 14px;
}

.alert-error {
    background: #fde8e8;
    border: 1px solid #f5c6c6;
    color: var(--danger-color);
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: var(--success-color);
}

/* ============================================
   Driver Dashboard - Mobile Responsive
   ============================================ */
@media (max-width: 768px) {
    .action-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .action-card {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 15px;
        gap: 12px;
    }

    .action-icon {
        font-size: 28px;
        margin-bottom: 0;
    }

    .action-card h3 {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .action-card p {
        font-size: 12px;
    }

    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .info-row .label {
        font-size: 12px;
        text-transform: uppercase;
        color: #999;
    }

    .info-row.highlight .balance {
        font-size: 16px;
    }

    .table-container {
        margin: 10px -5px;
    }

    .table-container table {
        font-size: 13px;
    }

    .table-container th,
    .table-container td {
        padding: 8px 10px;
    }

    .feature-items {
        grid-template-columns: 1fr;
    }
}

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

    .contract-info {
        padding: 15px;
        margin: 12px 0;
    }

    .contract-info h2 {
        font-size: 16px;
    }
}
/* ============================================
   Camera Capture & Cropper Modal
   Self-contained — do not modify core classes
   ============================================ */

/* ── Overlay ───────────────────────────────── */
.vms-cam-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.vms-cam-overlay.vms-cam-open {
    opacity: 1;
    visibility: visible;
}

/* ── Modal Card ────────────────────────────── */
.vms-cam-modal {
    background: #111827;
    border-radius: 20px;
    width: 92%;
    max-width: 400px;
    max-height: 92vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
    transform: scale(0.92) translateY(16px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vms-cam-overlay.vms-cam-open .vms-cam-modal {
    transform: scale(1) translateY(0);
}

/* ── Modal Header ──────────────────────────── */
.vms-cam-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.vms-cam-header h3 {
    margin: 0;
    color: #f1f5f9;
    font-size: 15px;
    font-weight: 600;
}

.vms-cam-close {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #94a3b8;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.vms-cam-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #f1f5f9;
}

/* ── Video Viewport ────────────────────────── */
.vms-cam-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vms-cam-viewport video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
}

.vms-cam-viewport canvas {
    display: none;
}

/* ── Face Guide Overlay ────────────────────── */
.vms-cam-guide {
    position: absolute;
    inset: 12%;
    border: 2px dashed rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.vms-cam-guide::after {
    content: 'Center your face';
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Flash Effect ──────────────────────────── */
.vms-cam-flash {
    position: absolute;
    inset: 0;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    z-index: 3;
    transition: opacity 0.08s ease;
}

.vms-cam-flash.vms-cam-flash-on {
    opacity: 0.85;
}

/* ── Loading State ─────────────────────────── */
.vms-cam-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #111827;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    gap: 14px;
    z-index: 4;
}

.vms-cam-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: vms-cam-spin 0.7s linear infinite;
}

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

/* ── Error State ───────────────────────────── */
.vms-cam-error {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #111827;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    gap: 10px;
    padding: 24px;
    text-align: center;
    z-index: 4;
}

.vms-cam-error.vms-cam-show {
    display: flex;
}

.vms-cam-error-icon {
    font-size: 40px;
    opacity: 0.4;
}

.vms-cam-error-msg {
    color: #ef4444;
    font-weight: 600;
    font-size: 14px;
}

.vms-cam-error-hint {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* ── Capture Button ────────────────────────── */
.vms-cam-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.vms-cam-snap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 4px solid #f1f5f9;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: transform 0.12s ease;
    flex-shrink: 0;
}

.vms-cam-snap::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: #f1f5f9;
    transition: background 0.15s ease, transform 0.15s ease;
}

.vms-cam-snap:hover::after {
    background: #ef4444;
    transform: scale(0.9);
}

.vms-cam-snap:active {
    transform: scale(0.93);
}

/* ── Crop Viewport ─────────────────────────── */
.vms-crop-area {
    position: relative;
    width: 100%;
    background: #000;
    display: none;
    flex-direction: column;
}

.vms-crop-area.vms-crop-active {
    display: flex;
}

.vms-crop-area img {
    display: block;
    max-width: 100%;
}

/* Cropper.js style overrides */
.vms-crop-area .cropper-container {
    width: 100% !important;
}

.vms-crop-area .cropper-modal {
    background: rgba(0, 0, 0, 0.6);
}

.vms-crop-area .cropper-crop-box {
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.vms-crop-area .cropper-view-box {
    outline: none;
    border-radius: 2px;
}

.vms-crop-area .cropper-line,
.vms-crop-area .cropper-point {
    background-color: rgba(255, 255, 255, 0.75);
}

.vms-crop-area .cropper-center {
    display: none;
}

/* ── Crop Action Buttons ───────────────────── */
.vms-crop-actions {
    display: flex;
    gap: 12px;
    padding: 14px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.vms-crop-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
}

.vms-crop-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.vms-crop-btn-retake {
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
}

.vms-crop-btn-retake:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.14);
}

.vms-crop-btn-save {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}

.vms-crop-btn-save:hover:not(:disabled) {
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45);
    transform: translateY(-1px);
}

.vms-crop-btn-save:active:not(:disabled) {
    transform: translateY(0);
}

/* ── Hidden Utility ────────────────────────── */
.vms-cam-hidden {
    display: none !important;
}

/* ── Choice View (Camera / Upload) ─────────── */
.vms-cam-choice {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #111827;
    gap: 14px;
    z-index: 5;
    padding: 28px 20px;
}

.vms-cam-choice-title {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.vms-cam-choice-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 260px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: #f1f5f9;
    font-size: 15px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.1s;
}

.vms-cam-choice-btn:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.18);
}

.vms-cam-choice-btn:active {
    transform: scale(0.97);
}

.vms-cam-choice-btn i {
    font-size: 20px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    flex-shrink: 0;
}

.vms-cam-choice-btn-camera i {
    background: rgba(59, 130, 246, 0.18);
    color: #60a5fa;
}

.vms-cam-choice-btn-upload i {
    background: rgba(34, 197, 94, 0.18);
    color: #4ade80;
}

.vms-cam-choice-hint {
    color: rgba(255, 255, 255, 0.25);
    font-size: 11px;
    margin-top: 6px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@media (max-width: 360px) {
    .vms-cam-choice-btn { padding: 14px 16px; font-size: 14px; }
    .vms-cam-choice-btn i { width: 38px; height: 38px; font-size: 18px; }
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 480px) {
    .vms-cam-modal {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
}

@media (max-width: 360px) {
    .vms-cam-header h3 { font-size: 14px; }
    .vms-crop-btn { padding: 10px; font-size: 13px; }
}
