/* General Styles */
/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    /* background: url('<?= base_url("resources/img/background.jpg") ?>') no-repeat center center fixed;   */
    background-size: cover;  /* 🔥 Ajusta la imagen para que cubra toda la pantalla */
    background-position: center;
    background-attachment: fixed; /* 🔥 Mantiene la imagen fija al hacer scroll */
}


.card{
   padding: 30px;
}


/* Background only for Landing Page */

/* Navbar */
.navbar {
    padding: 7px;
    background: linear-gradient(200deg, #dc3545b0, red);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.navbar .btn-primary {
    background-color: white;
    color: #007bff;
    border: none;
    font-weight: bold;
    padding: 8px 15px;
    transition: 0.3s;
}

.navbar .btn-primary:hover {
    background-color: #007bff;
    color: white;
}

/* Hero Section */
.container.text-center {
    margin-top: 80px;
    padding: 50px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #343a40;
}

/* Search Form */
.input-group {
    max-width: 500px;
    margin: 20px auto;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    font-weight: bold;
    transition: 0.3s;
}

.btn-success:hover {
    background-color: #218838;
}

/* Table Styles */
.table-responsive {
    margin-top: 20px;
}

.table {
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.table thead {
    background: linear-gradient(45deg, #007bff, #6610f2);
    color: white;
}

.table th, .table td {
    text-align: center;
    padding: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    .navbar {
        padding: 10px;
    }
    .navbar-brand {
        font-size: 1.2rem;
    }
}

/* Login Page Styles ***********************************************/
.h-custom {
    height: calc(100% - 73px);
}

@media (max-width: 450px) {
    .h-custom {
        height: 100%;
    }


}

.divider:after,
.divider:before {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}

/* Imagen de login */
.login-img {
    max-width: 60%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.btn-floating {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-100{
    width: 100%;
}
