@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #0B0B0F;
    color: #FFFFFF;
}

.card {
    background-color: #1C1C28;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.card-header {
    background-color: #1C1C28;
    color: #27AE60; /* green highlight */
    font-weight: 600;
}

h2, h3, h4, h5, h6 {
    color: #FFFFFF;
}

p, label, small {
    color: #B0B0B5;
}

.btn-primary {
    background-color: #3772FF;
    border-color: #3772FF;
}

.btn-success {
    background-color: #27AE60;
    border-color: #27AE60;
}

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

.table-striped > tbody > tr:nth-of-type(odd) {
    --bs-table-accent-bg: #151523;
}

input.form-control {
    background-color: #151523;
    border-radius: 12px;
    color: #FFFFFF;
    border: 1px solid #333;
}

input::placeholder {
    color: #B0B0B5;
}