/* Estilos generales */
body {
    font-family: "Poppins", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F5F6F5;
    color: #1F2526;
}

/* Encabezado */
header {
    background-color: #F5F6F5;
    color: #000000;
    padding: 20px;
    font-family: "Montserrat", sans-serif;
    border-bottom: 4px solid #FF6200;
}

.header-content {
    width: 100%;
}

.logo {
    max-width: 130px;
    height: auto;
}

.header-title h1 {
    font-size: 18px;
    font-weight: 600;
    color: #1F2526;
    margin: 0;
}

/* Navegación */
nav {
    background-color: #003A44;
    padding: 10px 0;
}

.nav-link {
    color: #FFFFFF !important;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.nav-link:hover {
    color: #FF6200 !important;
}

/* Contenedor principal */
main {
    min-height: calc(100vh - 140px);
    padding: 20px;
}

/* Formularios (login y otros) */
.login-container {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.form-group label {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1F2526;
}

.form-group input[type="email"],
.form-group input[type="password"] {
    font-family: "Poppins", sans-serif;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #D3D3D3;
    border-radius: 5px;
}

/* Botones */
.btn-primary {
    font-family: "Montserrat", sans-serif;
    background-color: #003087;
    border-color: #003087;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #002366;
    border-color: #002366;
}

.btn-warning {
    background-color: #FF6200;
    border-color: #FF6200;
}

.btn-warning:hover {
    background-color: #E55A00;
    border-color: #E55A00;
}

button:disabled {
    background-color: #CCCCCC;
    cursor: not-allowed;
}

/* Tabla (consulta-empresas) */
.table {
    margin-top: 20px;
    min-width: 900px;
}

.table th {
    background-color: #003087;
    color: #FFFFFF;
    font-family: "Montserrat", sans-serif;
}

.table td a {
    color: #003087;
    text-decoration: none;
}

.table td a:hover {
    text-decoration: underline;
}

.status-checkbox {
    margin-right: 10px;
}

.status-text {
    font-weight: bold;
    color: #333;
}

/* Footer */
footer {
    background-color: #003A44;
    color: #FFFFFF;
    border-top: 4px solid #FF6200;
}

.social-icons a {
    color: #FFFFFF;
    font-size: 24px;
    background-color: #FF6200;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #E55A00;
}

/* Media Queries */
@media (max-width: 600px) {
    .header-title h1 {
        font-size: 16px;
    }

    .logo {
        max-width: 100px;
    }

    .login-container {
        padding: 20px;
        max-width: 90%;
    }
}