/* ============================================================
   GLOBAL DARK THEME STYLESHEET
   Taxi Rent Management Panel
   ============================================================ */

body {
    background: #0f0f0f;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* -------------------------------
   SIDEBAR
-------------------------------- */
.sidebar {
    width: 230px;
    background: #1a1a1a;
    height: 100vh;
    position: fixed;
    padding-top: 20px;
    box-shadow: 2px 0 10px #000;
}

.sidebar a {
    display: block;
    padding: 14px 20px;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 5px;
    font-size: 15px;
}

.sidebar a:hover {
    background: #333;
}

/* -------------------------------
   CONTENT AREA
-------------------------------- */
.content {
    margin-left: 250px;
    padding: 30px;
}

/* -------------------------------
   TABLES
-------------------------------- */
table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
}

th, td {
    padding: 12px;
    border-bottom: 1px solid #333;
}

th {
    background: #222;
    color: #eee;
}

tr:hover {
    background: #2a2a2a;
}

/* -------------------------------
   BUTTONS
-------------------------------- */
.btn {
    padding: 7px 12px;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    display: inline-block;
}

.btn-blue {
    background: dodgerblue;
}

.btn-blue:hover {
    background: #1f6fd6;
}

.btn-green {
    background: #00a65a;
}

.btn-green:hover {
    background: #00964f;
}

.btn-orange {
    background: orange;
    color: #000;
}

.btn-orange:hover {
    background: #ffb038;
}

.btn-red {
    background: #cc0000;
}

.btn-red:hover {
    background: #b30000;
}

/* -------------------------------
   FORMS
-------------------------------- */
input, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    background: #222;
    border: 1px solid #444;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
}

button {
    width: 100%;
    padding: 12px;
    background: dodgerblue;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: #1f6fd6;
}

/* -------------------------------
   PROFILE BOX, CARDS, PANELS
-------------------------------- */
.box, .form-box, .profile-box {
    background: #1c1c1c;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 8px #000;
    margin-bottom: 20px;
}

/* -------------------------------
   STATUS COLORS
-------------------------------- */
.paid {
    color: #00cc66 !important;
    font-weight: bold;
}

.unpaid {
    color: #ff4444 !important;
    font-weight: bold;
}

/* -------------------------------
   ERROR / SUCCESS MESSAGES
-------------------------------- */
.error {
    background: #b30000;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.success {
    background: #007a00;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}
