/* assets/css/veicular-main.css */
.roosis-veicular-wrap {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #2c3e50;
    padding: 20px;
    background: #f4f7fb; 
    min-height: 100vh;
}

/* Glassmorphism elements */
.rv-kpi-card, .rv-card-protection, .rv-modal-content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 20px;
}

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

.rv-btn {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rv-btn-primary {
    background: linear-gradient(135deg, #00C9FF 0%, #92FE9D 100%);
    color: #0b3d2c;
    box-shadow: 0 4px 15px rgba(0, 201, 255, 0.2);
}

.rv-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 201, 255, 0.4);
}

.rv-btn-outline {
    background: transparent;
    border: 2px solid #00C9FF;
    color: #00C9FF;
}

/* Kanban Board Premium */
.rv-kanban-board {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.rv-column {
    flex: 1;
    min-width: 280px;
    background: rgba(234, 240, 246, 0.6);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.rv-column h3 {
    margin-top: 0;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #5c6ac4;
    border-bottom: 2px solid rgba(92, 106, 196, 0.2);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.rv-column-cards {
    flex: 1;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rv-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    cursor: grab;
    transition: transform 0.2s, box-shadow 0.2s;
    border-left: 4px solid #00C9FF;
}

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

.rv-card-title {
    font-weight: 700;
    margin: 0 0 8px 0;
    font-size: 14px;
}

.rv-card-meta {
    font-size: 12px;
    color: #7f8c8d;
    margin: 4px 0;
}

.rv-card-placeholder {
    background: rgba(0, 201, 255, 0.05);
    border: 2px dashed #00C9FF;
    border-radius: 10px;
    min-height: 100px;
    margin-bottom: 12px;
}

/* Modals */
.rv-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.rv-modal-content {
    background: white;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.rv-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.rv-modal-close {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

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

.rv-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.rv-form-group input, .rv-form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #dce1e7;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.rv-form-group input:focus {
    outline: none;
    border-color: #00C9FF;
}

.rv-smart-uploader {
    border: 2px dashed #00C9FF;
    background: rgba(0, 201, 255, 0.05);
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Admin Dashboard Styles */
.rv-admin-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.rv-admin-header .rv-icon-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    font-size: 32px;
}

.rv-admin-header h1 {
    margin: 0;
    color: white;
    font-size: 28px;
}

.rv-admin-header p {
    margin: 5px 0 0 0;
    opacity: 0.8;
}

/* Tabs */
.rv-admin-tabs {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.rv-tab-link {
    padding: 12px 24px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s;
}

.rv-tab-link.active {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px 8px 0 0;
}

.rv-tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.rv-tab-content.active {
    display: block;
}

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

/* Guide Steps */
.rv-guide-container {
    padding: 20px 0;
}

.rv-guide-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.rv-guide-step::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 60px;
    bottom: -20px;
    width: 2px;
    background: #e2e8f0;
}

.rv-guide-step:last-child::before {
    display: none;
}

.rv-step-number {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    z-index: 2;
}

.rv-step-content {
    padding-top: 10px;
}

.rv-step-content h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    color: #1e293b;
}

.rv-step-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Shortcode Table */
.rv-shortcode-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.rv-shortcode-table th, .rv-shortcode-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.rv-shortcode-table th {
    background: #f8fafc;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    color: #64748b;
    letter-spacing: 1px;
}

.rv-shortcode-code {
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: monospace;
    color: #ef4444;
    font-weight: bold;
    border: 1px solid #e2e8f0;
}
/* Alerts */
.rv-alert {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.rv-alert-danger {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* Layout Global SaaS - Vibrant UI */
.rv-saas-layout {
    display: flex;
    min-height: 85vh;
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin: 20px 0;
    border: 1px solid rgba(255,255,255,0.4);
}

.rv-saas-sidebar {
    width: 280px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.rv-saas-content {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
    background: rgba(244, 247, 251, 0.9);
}

/* Sidebar Components */
.rv-sidebar-header {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.rv-sidebar-header .rv-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rv-logo h2 {
    margin: 10px 0 0 0;
    font-size: 20px;
    color: #1e293b;
    font-weight: 800;
}

.rv-logo small {
    color: #94a3b8;
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: bold;
}

.rv-sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

.rv-sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rv-sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.rv-sidebar-nav a:hover, .rv-sidebar-nav li.active a {
    background: linear-gradient(90deg, rgba(0, 201, 255, 0.08) 0%, transparent 100%);
    color: #008cb3;
    border-left-color: #00C9FF;
}

.rv-nav-icon {
    margin-right: 15px;
    font-size: 18px;
}

.rv-sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(0,0,0,0.03);
}
.rv-user-info { display: flex; align-items: center; margin-bottom: 15px; }
.rv-user-avatar { font-size: 30px; margin-right: 10px; }
.rv-btn-logout { 
    color: #ef4444; 
    font-size: 13px; 
    text-decoration: none; 
    font-weight: bold; 
    display: block; 
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    background: rgba(239, 68, 68, 0.05);
}
.rv-btn-logout:hover {
    background: rgba(239, 68, 68, 0.1);
}
