html {
  font-size: 14px;
}

@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%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.loading-overlay {
    position: fixed;
    inset: 0; /* top, right, bottom, left = 0 */
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 2000; /* por encima de la navbar y demás */
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-content {
    /* puedes ajustar si quieres un fondo detrás del spinner */
}

.loading-overlay .spinner-border {
    width: 3rem;
    height: 3rem;
}

.loading-content {
    padding: 1.5rem 2rem;
    border-radius: 0.75rem;
    background-color: rgba(0, 0, 0, 0.6);
}
.btn-primary-action {
    border-radius: 999px; /* tipo “pastilla” */
    padding-inline: 2.5rem; /* más ancho */
    padding-block: 0.9rem; /* más alto */
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.15);
    transition: transform 0.08s ease-out, box-shadow 0.08s ease-out, background-color 0.08s ease-out;
}

    .btn-primary-action:focus-visible {
        outline: 2px solid #ffffff;
        outline-offset: 2px;
        box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.4); /* mismo tono que btn-success */
    }

    .btn-primary-action:hover {
        transform: translateY(-1px);
        box-shadow: 0 0.7rem 1.6rem rgba(0, 0, 0, 0.2);
    }

    .btn-primary-action:active {
        transform: translateY(0);
        box-shadow: 0 0.3rem 0.8rem rgba(0, 0, 0, 0.2);
    }
/* Header del proyecto */
.project-header-card {
    border-radius: 0.75rem;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

.project-header-title {
    font-weight: 600;
}

.project-header-meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6c757d;
}

.project-header-date {
    font-size: 0.95rem;
    font-weight: 600;
}

.project-header-time {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Recuadro de datos del proyecto */
.project-info-card {
    border-radius: 0.75rem;
    border: 1px solid #e0e0e0;
}

.project-info-item-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6c757d;
    margin-bottom: 0.15rem;
}

.project-info-item-value {
    font-weight: 500;
}
/* Header del proyecto: líneas etiqueta + valor */
.project-header-card {
    border-radius: 0.75rem;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

.project-header-line {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.25rem;
}

.project-header-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6c757d;
    margin-right: 0.35rem;
}

.project-header-value {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Recuadro de datos del proyecto: línea etiqueta + valor */
.project-info-card {
    border-radius: 0.75rem;
    border: 1px solid #e0e0e0;
}

.project-info-line {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.35rem;
}

.project-info-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6c757d;
    margin-right: 0.35rem;
}

.project-info-value {
    font-size: 0.9rem;
    font-weight: 500;
}
#timeTrackingRoot {
    display: none;
}

