/* ROAST.WALLET Admin Panel Styles */

:root {
    --sidebar-width: 280px;
}

body {
    background-color: #121212;
    color: #ffffff;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.sidebar .nav-link {
    color: #adb5bd;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    margin-bottom: 0.25rem;
}

.sidebar .nav-link:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar .nav-link.active {
    color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.1);
}

.sidebar .nav-link.disabled {
    color: #6c757d;
    cursor: not-allowed;
}

/* Main Content */
main {
    margin-left: var(--sidebar-width);
    background-color: #1a1a1a;
}

/* Cards */
.card {
    background-color: #1e1e1e;
}

/* Form Controls */
.form-control:focus,
.form-select:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.25);
}

/* Response Cards */
.response-card {
    cursor: pointer;
}

.response-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Toast */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #3a3a3a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4a4a4a;
}

/* Modal */
.modal-content {
    border: 1px solid #3a3a3a;
}

/* Code/Pre */
pre {
    background-color: #0d0d0d !important;
}

/* Responsive */
@media (max-width: 991.98px) {
    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
    }

    main {
        margin-left: 0;
    }
}

