/* ===== RESET BASE ===== */

body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg,#0f0f1a,#1c1c2e);
    color: #fff;
    margin: 0;
}

/* Cards padrão */
.card {
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* Botões padrão */
.btn-primary-custom {
    background: linear-gradient(45deg,#6a00ff,#00c3ff);
    border: none;
    font-weight: bold;
}

.btn-primary-custom:hover {
    transform: scale(1.05);
}

/* Sidebar padrão */
.sidebar {
    width: 280px;
    height: 100vh;
    position: fixed;
    background: #010210;
    backdrop-filter: blur(10px);
    padding: 20px;
}

/* Content padrão */
.content {
    margin-left: 280px;
    padding: 30px;
}

/* Scroll custom */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background: #6a00ff;
    border-radius: 10px;
}
h5, h3, h6, h4, p {
    color: white!important;
}