﻿/* ===== GLOBAL ===== */
body {
    background: radial-gradient(circle at top, #1a1a1a, #000);
    color: #eaeaea;
    font-family: 'Segoe UI', sans-serif;
}

/* ===== HERO ===== */
.btc-hero {
    position: relative;
    height: 260px;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.btc-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.btc-hero-overlay {
    position: absolute;
    inset: 0;
}

.btc-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #f7931a;
}

.btc-logo {
    width: 90px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 20px #f7931a);
}

.btc-content h1 {
    font-size: 36px;
    font-weight: 700;
}

.btc-line {
    width: 120px;
    height: 3px;
    background: linear-gradient(to right, #f7931a, transparent);
}

/* ===== DASHBOARD ===== */
.dashboard-container {
    padding: 20px;
}

/* ACTION BAR */
.dashboard-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.btn-add {
    background: linear-gradient(135deg, #f7931a, #ffb347);
    color: #000;
    font-weight: bold;
    border-radius: 25px;
    padding: 8px 20px;
}

.export-buttons .btn {
    margin-left: 10px;
    border-radius: 20px;
    font-size: 14px;
}

.btn-excel {
    background: #198754;
    color: #fff;
}

.btn-pdf {
    background: #dc3545;
    color: #fff;
}

.btn-print {
    background: #6c757d;
    color: #fff;
}

/* ===== TABLE ===== */
.table-card {
    background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0,0,0,0.8);
}

.crypto-table th {
    background: #111;
    color: #f7931a;
}

.crypto-table td {
    background: transparent;
}

/* STATUS */
.status {
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: bold;
}

    .status.active {
        background: rgba(25,135,84,0.3);
        color: #20c997;
    }

    .status.inactive {
        background: rgba(220,53,69,0.3);
        color: #ff6b6b;
    }

/* EDIT BUTTON */
.btn-edit {
    background: #0d6efd;
    color: #fff;
    border-radius: 20px;
}

/* DATATABLE BUTTONS */
/*.dt-button {
    background: linear-gradient(135deg, #f7931a, #ffb347) !important;
    border: none !important;
    border-radius: 20px !important;
    color: #000 !important;
    font-weight: bold;
}
*/