/* filepath: /var/www/html/ComplianceReports/public/css/siebel-theme.css */
:root {
    --siebel-primary: #0066cc;
    --siebel-secondary: #4a90e2;
    --siebel-dark: #2c3e50;
    --siebel-light: #ecf0f1;
    --siebel-success: #27ae60;
    --siebel-warning: #f39c12;
    --siebel-danger: #e74c3c;
    --siebel-info: #3498db;
    --siebel-border: #bdc3c7;
    --siebel-bg: #f8f9fa;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--siebel-bg);
    color: var(--siebel-dark);
    margin: 0;
    padding: 0;
}

.siebel-navbar {
    background: linear-gradient(135deg, var(--siebel-primary), var(--siebel-secondary));
    border-bottom: 3px solid var(--siebel-dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.siebel-navbar .navbar-brand {
    color: white !important;
    font-weight: bold;
    font-size: 1.5rem;
}

.siebel-navbar .nav-link {
    color: white !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.siebel-navbar .nav-link:hover {
    color: var(--siebel-light) !important;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.siebel-card {
    border: 1px solid var(--siebel-border);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background: white;
    margin-bottom: 20px;
}

.siebel-card-header {
    background: linear-gradient(135deg, var(--siebel-light), #ffffff);
    border-bottom: 2px solid var(--siebel-primary);
    font-weight: bold;
    color: var(--siebel-dark);
    padding: 15px 20px;
}

.siebel-btn-primary {
    background: linear-gradient(135deg, var(--siebel-primary), var(--siebel-secondary));
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.siebel-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,102,204,0.3);
}

.siebel-form-control {
    border: 2px solid var(--siebel-border);
    border-radius: 6px;
    padding: 12px 15px;
    transition: border-color 0.3s ease;
}

.siebel-form-control:focus {
    border-color: var(--siebel-primary);
    box-shadow: 0 0 0 0.2rem rgba(0,102,204,0.25);
}

.siebel-table {
    background: white;
    /*border-radius: 8px;*/
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.siebel-table thead {
    background: linear-gradient(135deg, var(--siebel-dark), #34495e);
    color: white;
}

.siebel-table th {
    border: none;
    /*padding: 15px;*/
    font-weight: 600;
}

.siebel-table td {
    /*padding: 12px 15px;*/
    border-bottom: 1px solid var(--siebel-border);
}

.siebel-table tbody tr:hover {
    background-color: rgba(0,102,204,0.05);
}

.siebel-sidebar {
    background: linear-gradient(180deg, var(--siebel-dark), #34495e);
    min-height: calc(100vh - 76px);
    color: white;
}

.siebel-sidebar .nav-link {
    color: rgba(255,255,255,0.8);
    padding: 12px 20px;
    border-radius: 0;
    transition: all 0.3s ease;
}

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

.siebel-stat-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.siebel-stat-card:hover {
    transform: translateY(-5px);
}

.siebel-stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.siebel-stat-label {
    color: #7f8c8d;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--siebel-primary), var(--siebel-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.login-header {
    background: linear-gradient(135deg, var(--siebel-dark), #34495e);
    color: white;
    padding: 30px;
    text-align: center;
}

.login-body {
    padding: 40px 30px;
}

.alert-siebel {
    border-radius: 8px;
    border: none;
    padding: 15px 20px;
}

.badge-siebel {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 20px;
}