/* Estilos custom para Chitech Onuba - Complemento a Bootstrap */
body {
    background-color: #121212; /* Fondo especificado */
}

.navbar-brand {
    font-weight: bold;
}

.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #303030 !important; /* Color para cuadros de contenido */
}

.card-header {
    font-weight: bold;
}

footer {
    margin-top: auto;
    background-color: #202020 !important; /* Color para footer */
}

/* Asegurar que el footer esté al final */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* SPA sections */
.section {
    display: none;
    background-color: transparent; /* Fondo transparente para que el card se vea sobre el negro */
    margin: 0;
    border-radius: 10px;
    padding: 10px;
}

.section.active {
    display: block;
}

/* Navbar color especificado */
.navbar {
    background-color: #202020 !important;
}

.navbar-brand img {
    height: 40px;
}

h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 1.25rem;
}

/* Color rojo personalizado */
.bg-danger {
    background-color: rgb(239, 9, 31) !important;
}

.btn-danger {
    background-color: rgb(200, 0, 20) !important;
    border-color: rgb(200, 0, 20) !important;
}

.btn-danger:hover {
    background-color: rgb(200, 0, 20) !important;
    border-color: rgb(200, 0, 20) !important;
}
