/* ================================
   AOG LuxeERP - Luxury Theme
   Author: Senior Developer 😎
================================ */

/* GLOBAL */

body {
    background-color: #F8F5EF;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 14px;
    color: #222;
}

/* NAVBAR */

.navbar {
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.navbar .navbar-brand {
    font-weight: 600;
    letter-spacing: 1px;
}

/* SIDEBAR */

.sidebar {
    background-color: #111111;
    min-height: 100vh;
    padding-top: 20px;
}

.sidebar a {
    display: block;
    padding: 12px 20px;
    color: #C9A227;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar a:hover {
    background-color: #C9A227;
    color: #111;
    border-radius: 6px;
}

/* CARDS */

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.card-header {
    background-color: #fff;
    font-weight: 600;
}

/* BUTTONS */

.btn-gold {
    background-color: #C9A227;
    color: #fff;
    border: none;
}

.btn-gold:hover {
    background-color: #A67C00;
    color: #fff;
}

/* FORMS */

input,
select,
textarea {
    border-radius: 6px !important;
    border: 1px solid #ccc !important;
    padding: 6px 10px !important;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #C9A227 !important;
    box-shadow: 0 0 5px rgba(201,162,39,0.5) !important;
}

/* TABLES */

.table thead {
    background-color: #111;
    color: #C9A227;
}

.table td,
.table th {
    vertical-align: middle;
}

/* DASHBOARD STAT CARDS */

.stat-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.stat-card h4 {
    font-size: 22px;
    color: #C9A227;
    margin-bottom: 5px;
}

.stat-card p {
    margin: 0;
    color: #777;
}

/* DARK MODE */

.dark-mode {
    background-color: #111 !important;
    color: #eee !important;
}

.dark-mode .card {
    background-color: #1e1e1e !important;
    color: #eee !important;
}

.dark-mode .sidebar {
    background-color: #000 !important;
}

/* WATERMARK IMAGE FOR PDF PREVIEW (optional) */

.watermark-preview {
    opacity: 0.1;
    position: absolute;
    top: 40%;
    left: 30%;
    transform: rotate(-30deg);
}

/* FOOTER */

.footer {
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: #777;
    margin-top: 20px;
}
