/* General Body Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #f5f5f5;
}

.richtext-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Account Verified Page Container */
.account-verified-left {
    background-color: #d1c9ff; /* Light pastel teal color */
    color: #333;
    padding: 0;
    text-align: center;
    height: 100vh;
}

/* Verify Page Container */
.verify-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Left Column - New Pastel Background */
.verify-left {
    background-color: #ffd1c9; /* Light pastel teal color */
    color: #333;
    padding: 0;
    text-align: center;
    height: 100vh;
}

/* Right Column - Verify Info */
.verify-right {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    max-width: 400px;
    width: 100%;
}


/* Register Page Container */
.register-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Left Column - Image and Text */
.register-left {
    background-color: #e0e8f1; /* Light gray background */
    color: #333;
    padding: 0;
    text-align: center;
    height: 100vh;
}

.register-left img {
    max-width: 90%;
    height: auto;
}

/* Login Page Container */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Left Column - Image and Text */
.login-left {
    background-color: #f3dfbc; /* Light beige color */
    color: #333;
    padding: 0;
    text-align: center;
    height: 100vh;
}

.login-left img {
    max-width: 90%;
    height: auto;
}

.recover-left {
    background-color: #f3bcbc;
    color: #333;
    padding: 0;
    text-align: center;
    height: 100vh;
}

.email-sent-left {
    background-color: #efbbe0;
    color: #333;
    padding: 0;
    text-align: center;
    height: 100vh;
}

.success-left {
    background-color: #daefd0;
    color: #333;
    padding: 0;
    text-align: center;
    height: 100vh;
}

.welcome-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: auto;
}

.subtext {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    margin-bottom: auto;
}

/* Right Column - Register Form */
.register-right {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
}

.logo-container img {
    max-width: 150px;
}

.form-control {
    font-family: 'Open Sans', sans-serif;
    background-color: #fef2dd; /* Light beige to match the style */
    border: 1px solid #fef2dd;
    border-radius: 30px;
    padding: 12px 20px;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #fea80b;
    box-shadow: none;
}

.btn-primary {
    font-family: 'Open Sans', sans-serif;
    color: var(--bts-body-color);
    background-color: #fea80b; /* Custom yellow-orange */
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    padding: 0.5rem 2rem;
}

/* Hover state */
.btn-primary:hover {
    background-color: #efbe68;
    color: var(--bts-body-color);
}

/* Focus state (when the button is selected or clicked) */
.btn-primary:focus, .btn-primary:active {
    background-color: #dd9617 !important;  /* Custom light beige for active state */
    color: var(--bts-body-color) !important; /* Ensures text color remains readable */
    box-shadow: none; /* Removes the default blue focus outline */
    border-color: #dd9617;
    outline: none; /* Removes the outline */
}

.text-center a {
    color: var(--bts-body-color);
    font-weight: bold;
}

.text-center a:hover {
    text-decoration: none;
}

.drop-padding {
    padding-left: 0px;
    padding-right: 0px;
}

.extra-padding {
    padding-left: 1rem;
    padding-right: 1rem;
}

.extra-margin-bottom {
    margin-bottom: 2rem;
}

.extra-margin-top {
    margin-top: 3rem;
}

/* Narrower button for form submissions */
.btn-narrow {
    width: 70%; /* Make the button 70% of the container width */
    margin: 0 auto; /* Center the button horizontally */
}

.footer-margin {
    height: 3rem;
}

.footer-size-font {
    font-size: 0.7rem;
}

/* General Styles for Form Inputs */
.form-control, .form-select, input[type="date"] {
    font-family: 'Open Sans', sans-serif;
    background-color: #fef2dd; /* Light beige background */
    border: 1px solid #fef2dd; /* Same border color as text fields */
    border-radius: 30px; /* Rounded corners */
    padding: 12px 20px; /* Padding similar to input fields */
    font-size: 1rem; /* Consistent font size */
}

/* Focus state for input, select, and date picker */
.form-control:focus, .form-select:focus, input[type="date"]:focus {
    border-color: #fea80b; /* Same border color on focus */
    box-shadow: none; /* Removes default focus shadow */
    outline: none; /* Removes default browser outline */
}

/* Custom styling to hide the default appearance of date picker on some browsers */
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none; /* Removes the default arrow and calendar icon */
    -webkit-appearance: none; /* Removes WebKit-specific styling */
}

/* For better consistency across browsers */
input[type="date"] {
    appearance: none; /* Remove default styling */
    -webkit-appearance: none; /* Remove WebKit-specific styling */
    color: #555; /* Text color */
}

/* Custom styling for file upload section */
.file-upload {
    border: 2px dashed #a3a3d9;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    width: 100%;
}

.file-upload img {
    max-width: 50px;
    margin-bottom: 15px;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload label {
    background-color: #4e73df;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.file-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

/* Styles for the Accept and Cancel Buttons */
.btn-accept {
    background-color: #fea80b;
    color: white;
    width: 150px;
    border-radius: 30px;
    font-size: 1.2rem;
    border: none;
}

.btn-accept:hover {
    background-color: #efbe68;
}

.btn-cancel {
    background-color: #6c757d;
    color: white;
    width: 150px;
    border-radius: 30px;
    font-size: 1.2rem;
    border: none;
}

.btn-cancel:hover {
    background-color: #5a6268;
}

/* Table Customization */
.table-bordered {
    border: 2px solid #ddd;
}

.table thead th {
    background-color: #fef2dd;
    font-size: 1.1rem;
}

.table tbody td {
    font-size: 1rem;
    padding: 10px;
}

/* Table Styling with Alternating Row Colors */
.table-bordered {
    border: 1px solid #fea80b; /* Use the button background color for the border */
    width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

.table-bordered th, .table-bordered td {
    border: 1px solid #fea80b; /* Same color as the button */
    padding: 12px; /* Padding for readability */
    text-align: left;
    vertical-align: middle;
}

/* Alternating row colors */
.table-bordered tbody tr:nth-child(odd) {
    background-color: #fef2dd; /* Light beige color matching text field background */
}

.table-bordered tbody tr:nth-child(even) {
    background-color: #fff; /* White for alternating rows */
}

/* Header styling */
.table-bordered thead th {
    background-color: #fea80b; /* Button background color */
    color: white;
    font-weight: bold;
    text-align: center;
}

/* Table text styling */
.table-bordered td, .table-bordered th {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

.data-field {
    font-weight: bold;
    padding: 10px 0;
    display: block;
}

.file-upload {
    border: 2px dashed #fea80b;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    width: 100%;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload label {
    background-color: #4e73df;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.file-upload:hover {
    background-color: #fef2dd; /* Optional: change background color on hover */
}

/************/
/* Menu CSS */
/************/
.nav-link {
    padding: 8px 15px; /* Relleno interno del enlace para hacerlo más cómodo */
    position: relative;
    text-decoration: none;
    color: inherit; /* Conserva el color original del texto */
    padding: 10px 10px; /* Añade espacio alrededor del texto */
    transition: background-color 0.5s ease, border-radius 0.5s ease; /* Transiciones suaves */
}

.nav-link:hover {
    background-color: #fea80b; /* Cambia el fondo al color deseado */
    color: inherit; /* Mantiene el color del texto sin cambios */
    border-radius: 20px; /* Hace el fondo redondeado */
}

.nav-link::after {
    /* Elimina la línea inferior */
    content: '';
    position: absolute;
    width: 0;
    height: 0;
}

.navbar-nav .nav-item {
    margin-right: 20px; /* Añade espacio entre los elementos del menú */
}

.navbar-brand {
    margin-right: 30px; /* Espacio entre el logo y los enlaces de navegación */
}

.header-title {
    margin-left: 30px; /* Espacio entre el título y el último enlace del navbar */
    font-size: 1.5rem; /* Ajustar el tamaño del texto del título */
}

.navbar-toggler {
    margin-right: 15px; /* Espaciado adicional en vistas pequeñas */
}

/*********************/
/* Ajustes generales */
/*********************/
.extra-padding {
    padding: 20px;
}

.extra-margin-bottom {
    margin-bottom: 20px;
}

.alert {
    padding: 15px;
    border-radius: 5px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.list-style {
    list-style-type: none;
    padding: 0;
}

.list-style li {
    margin-bottom: 10px;
}

label {
    font-size: 0.7rem;
}

.login-error {
    color: #721c24 !important;
    margin-bottom: 1rem !important;
}

/* EOF */
