html {
  font-size: 14px;
}

body {
    padding-bottom: 150px; /* Ajusta este valor si tu footer es más alto */
}

/******************************
    FORM VALIDATION ERRORS
******************************/

.input-validation-error {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23dc3545' viewBox='0 0 16 16'%3e%3ccircle cx='8' cy='8' r='7.5'/%3e%3cline x1='8' y1='4.5' x2='8' y2='8.5'/%3e%3ccircle cx='8' cy='11' r='1'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    box-shadow: 0 0 0 0.25rem rgba(220,53,69,.25);
}



/******************************
    NAVBAR
******************************/


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: #2c3e50;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 32px;
    margin-right: 10px;
}

.company-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.navbar-right .nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

    .navbar-right .nav-link:hover {
        text-decoration: underline;
    }

a#nav-home-link {
    text-decoration: none;
    color: white;
    font-size: large;
}

/******************************
    CONVOCATIONS CARD
******************************/

.banner-email-distribution {
    background-color: transparent !important;
}

.organizer-card {
    border-width: 4px;
    border-style: solid;
    border-radius: 15px;
}

.organizer-card-with-pointer {
        cursor: pointer;
}

.convocation-card {
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border-width: 4px;
    border-style: solid;
    border-radius: 15px;
    cursor: pointer;
}

.convocation-open-status {
    border-color: #26b050;
}

.convocation-registration-status {
    border-color: #26b050;
}

.convocation-closed-status {
    border-color: darkgrey;
}

.convocation-check-registration-status {
    border-color: #26b050;
}

.convocation-evaluate-registration-status {
    border-color: midnightblue;
}

.convocatoin-preparation-status {
    border-color: midnightblue;
}

.convocation-soon-status {
    border-color: midnightblue;
}

input.pin-field-bg {
    background-color: #fff3cd;
}

@media (min-width: 768px) {
    html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}


