
body {
    font-family: 'Barlow', sans-serif;
}

h1, h2, h3 {
    font-family: 'Barlow Condensed', sans-serif !important;
}

.btn {
    font-family: 'Barlow', sans-serif !important;
}

/* Aplica a todos los botones */
.btn {
    border-radius: 20px;
}

.text-white {
    color: #ffffff !important;
}

.text-yellow {
    color: #FFD700 !important; /* amarillo dorado */
}

.text-dark {
    color: #373535 !important;
}

.text-blue {
    color: #2373D6 !important;
}

.text-small {
    font-size: 1rem; /* 16px */
}

.text-medium {
    font-size: 1.5rem; /* 24px */
}

.text-large {
    font-size: 2rem; /* 32px */
}

.text-xlarge {
    font-size: 2.5rem; /* 40px */
}

.page-content {
    min-height: 100vh; /* asegura que ocupe toda la pantalla */
}

.dt-button {
    color: var(--contrast-color);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    text-transform: uppercase;
    background: var(--accent-color);
    padding: 10px 30px;
    transition: 0.3s;
    border-radius: 20px;
}
    /* Efecto hover */
    .dt-button:hover {
        background-color: #0047ab; /* azul intenso */
        color: #ffffff; /* letras blancas */
        box-shadow: 0 4px 10px rgba(0, 71, 171, 0.4);
    }

.btn-light:hover {
    background-color: #FCD233; /* amarillo intenso */
    color: #000000; /* letras negras */
}

/* Card base: más delgada y alta */
.card-custom {
    max-width: 400px; /* controla el ancho */
    min-height: 420px; /* asegura altura */
    margin: 0 auto; /* centra en su columna */
}

    .card-custom .card-body {
        display: flex;
        flex-direction: column;
        justify-content: center; /* centra verticalmente el contenido */
        text-align: center;
        padding: 2rem; /* más espacio interno */
    }

    .card-custom .card-text,
    .card-custom ul {
        font-size: 1.1rem; /* letras más grandes */
        line-height: 1.8; /* más espacio entre líneas */
        margin-top: 1rem; /* separación superior */
    }

    .card-custom .card-title {
        font-size: 1.5rem; /* título más grande */
        margin-bottom: 1.5rem; /* espacio debajo del título */
    }

/* Card de login oscura */
.card-login {
    background-color: #373535;
    color: #ffffff; /* texto blanco */
}

    /* Ajuste para títulos dentro de card oscura */
    .card-login .card-title {
        color: #FFD700; /* amarillo para destacar */
    }

    /* Botón dentro de card oscura */
    .card-login .btn {
        background-color: #FCD233;
        color: #000000;
        border: none;
    }

        .card-login .btn:hover {
            background-color: #e6be2e;
            color: #000000;
        }

.portfolio-content {
    border-radius: 10px;
}

/***********************************/
/* Para todas las tablas DataTables */
table.dataTable {
    font-family: 'Barlow', sans-serif !important;
}

/* Para elementos específicos de DataTables */
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
    font-family: 'Barlow', sans-serif;
}
/***********************************/