body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background:white;
    align-items: center;
}

.header {
    background-color: #21735f;
    color: white;
    padding: 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 60px;
}
.logo-logo-conalep{
   height: 20px;  
   width: 160px;
}

.logo-text {
    background-color: #92133f;
    text-align: center;
    color: white;
    line-height: 1.2;
    font-weight: bold;
    font-size: 30px;
    padding: 5px;
    margin-bottom: 50px;
}

.logo span {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.2;
}

.logo small {
    font-size: 14px;
    font-weight: normal;
}

.card {
    background-color: white;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-header{
    background-color: #92133f !important;
    color: white !important;
}

.form-control {
    width: 100%;
    padding: 14px 45px 14px 40px;
    border: none;
    border-radius: 30px;
    box-shadow: 0 0 10px #21735f;
    background-color: #f9f9f9;
    color: #1d6f78;
    font-size: 14px;
    outline: none;
}

.form-control:focus {
    border-color: #1c9096 !important;
    box-shadow: #1c9096 !important;
}

.form-select{
    width: 100%;
    border-radius: 30px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px #21735f;
    padding: 10px;
    font-size: 14px;
    outline: none;
    margin-bottom: 15px;
}
.form-select:focus {
    border-color: #6a11cb;
    box-shadow: 0 0 5px rgba(106, 17, 203, 0.5);
}

.form-label{
    font-weight: bold;
}

.btn-primary {
    background: linear-gradient(135deg, #39b2b9, #21735f);
    border: none;
    padding: 25px;
    font-weight: bold;
    margin-top: 20px;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #21735f, #39b2b9);
}

.navbar-custom {
    background-color: #92133f;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
        
.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: #fff !important;
    font-weight: bold;
}
        
.navbar-custom .nav-link:hover {
    color: #ffffff !important;
}
        
.navbar-custom .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}
    
.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-custom .dropdown-menu {
    background-color: #92133f;
    border: none;
}

.navbar-custom .dropdown-item {
    color: white;
}

.navbar-custom .dropdown-item:hover {
    background-color: #7b1034; 
    color: #fff;
}

.container-tabla{
    background-color: #f1f4f4;
}

.container h2,
.container h4,
.container h5  {
    text-align: center;
    margin: 30px;
    color: #21735f;
}

.container h6{
    text-align: center;
    margin: 5px;
    color: #21735f;
}

.card-form {
    background-color: #dcdada;
    border: none;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-form-reg {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 3 columnas */
    gap: 15px; /* Espacio entre elementos */
    padding: 20px;
}
.form-control-reg {
    padding: 10px 30px 10px 30px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 10px #21735f;
    background-color: #f9f9f9;
    color: #043d43;
    font-size: 16px;
    outline: none;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 5px;
    margin-right: 5px;
}

.form-control-reg-tut {
    padding: 10px 30px 10px 30px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 10px #21735f;
    background-color: #f9f9f9;
    color: #043d43;
    font-size: 16px;
    outline: none;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 5px;
    margin-right: 5px;
    width: 500px;
}

.form-label-reg{
    font-weight: bold;
    margin-top: 10px;
    margin-left: 10px;

}

.form-label-reg-tut{
    padding: 20px;
    font-weight: bold;
    margin-top: 10px;
    margin-left: 10px;
}

.form-control:focus {
    border-color: #1c9096 !important;
    box-shadow: #1c9096 !important;
}

.form-select-reg{
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 10px #21735f;
    color: #043d43;
    padding: 10px 100px 10px 100px;
    font-size: 16px;
    outline: none;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 5px;
    margin-right: 5px;
}
.form-select:focus {
    border-color: #6a11cb;
    box-shadow: 0 0 5px rgba(106, 17, 203, 0.5);
}


.btn-form{
    background: linear-gradient(135deg, #39b2b9, #21735f);
    border: none;
    padding: 30px;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    width: 20%;
    font-weight: bold;
    color: white !important;
}
.btn-form:hover {
    background: linear-gradient(135deg, #21735f, #39b2b9);
}

.custom-tabs {
    margin-bottom: 20px;
    border-bottom: 1px solid #21735f !important;
}

.custom-tabs .nav-link {
    border: none;
    border-radius: 0;
    background-color: transparent;
    color: #21735f !important;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 80px;
}

.tab-float-end {
    margin-left: auto;
}

.custom-tabs .nav-link.active {
    background-color: #21735f !important;
    border-bottom: 2px solid #21735f !important;
    color: white !important;
    font-weight: bold;
}

.custom-tabs .nav-link:hover {
    background-color: #21735f !important;
    color: white !important;
    transition: background-color 0.3s ease;
}

.entries-table {
    overflow-x: auto;
}

.entries-table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #3b3b3b;
    font-size: 14px;
}

.entries-table th,
.entries-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #3b3b3b !important;
}

.entries-table th {
    position: sticky;
    top: 0;
    background-color: #21735f;
    color: white;
    z-index: 1;
}

.entries-table tr:nth-child(even) {
    background-color: #aaaaaa;
}

.entries-table tr:hover {
    background-color: #e7f5f0;
}

.contador {
  justify-content: center; 
  width: 100%;
  font-weight: 600; 
  font-size: 1rem;  
  color: #21735f !important;
  margin-top: 1rem;
  margin-right: 20px !important;
  text-align: center;
}

.contador .resumen-vertical {
  display: flex;
  flex-direction: column;
  justify-content: left;
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: #21735f !important;
  text-align: left;
}


.footer{
    background-color: #21735f;
    color: white;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 2px;
    width: 100%;
    font-size: 14px;
    margin-top: 100px;
    

}
.footer p{
    color: white;
    text-align: center;
    width: 100%;
    font-size: 14px;
    margin: 10px;

}

@media (max-width: 1199px) {
    .card-form-reg {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .login-container, .container {
        width: 100%;
        padding: 60px;
    }

    .card-form-reg {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 768px) {
    .card-form-reg {
        grid-template-columns: repeat(1, 1fr);
    }

    .custom-tabs .nav-link {
        padding: 10px 50px;
    }
}
