﻿/* AFREEPAY GLOBAL STYLE */

:root {
    --afree-blue: #0B4FA3;
    --afree-darkblue: #0A3C7A;
    --afree-green: #2FA84F;
    --afree-lightgreen: #4BC16A;
    --afree-dark: #1F2A33;
}

body {
    font-family: 'Segoe UI',sans-serif;
    color: var(--afree-dark);
    background: #f4f6f9;
}

/* NAVBAR */
.afree-navbar {
    background: white;
    border-bottom: 1px solid #eee;
}

/* SIDEBAR (for dashboard) */
.sidebar {
    width: 240px;
    height: 100vh;
    position: fixed;
    background: linear-gradient( 180deg, var(--afree-darkblue), var(--afree-blue) );
    color: white;
    padding-top: 20px;
}

    .sidebar a {
        display: block;
        color: white;
        padding: 12px 20px;
        text-decoration: none;
    }

        .sidebar a:hover {
            background: rgba(255,255,255,0.1);
        }

/* MAIN CONTENT */
.main {
    margin-left: 250px;
    padding: 20px;
}

/* CARDS */
.card-afree {
    border: none;
    border-radius: 12px;
    padding: 20px;
    background: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* STATUS COLORS */
.status-active {
    color: green;
    font-weight: 600;
}

.status-offline {
    color: red;
    font-weight: 600;
}

.status-pending {
    color: orange;
    font-weight: 600;
}

/* BUTTON */
.btn-afree {
    background: var(--afree-green);
    color: white;
    border: none;
}

    .btn-afree:hover {
        background: var(--afree-lightgreen);
    }
