/**
 * Teloalquilo - Estilos de Administración de Publicaciones
 * 
 * Centraliza las clases visuales de los formularios de creación y edición 
 * para mantener el código HTML/PHP libre de atributos de estilos inline.
 */

.telo-cat-paso-title {
    font-weight: 800;
    color: var(--telo-text);
    text-align: center;
    margin-bottom: 2rem;
}

.telo-cat-selected-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.telo-cat-selected-lbl {
    font-size: 0.8em;
    color: var(--telo-text-muted);
    display: block;
    line-height: 1;
}

.telo-cat-selected-val {
    color: var(--telo-text);
    font-size: 1.05rem;
}

.telo-form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.telo-field-sublabel {
    font-size: 0.8em;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.telo-section-subtitle {
    font-size: 0.85em;
    color: var(--telo-text-muted);
    margin-bottom: 1rem;
}

.telo-rates-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.telo-form-divider-section {
    border-top: 1px solid var(--telo-border);
    padding-top: 1.5rem;
}

.telo-form-divider-section.large {
    margin-top: 2rem;
}

.telo-rate-add-row {
    display: flex;
    gap: 0.8rem;
    align-items: flex-end;
}

.telo-input-prefix-container {
    position: relative;
}

.telo-input-prefix-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: var(--telo-primary);
    font-size: 1.1rem;
}

.telo-input-prefixed {
    border-radius: 8px;
    padding-left: 32px !important;
    margin-bottom: 0;
    height: auto;
}

.telo-section-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--telo-text);
    margin-bottom: 1.5rem;
}

.telo-counter-text {
    font-size: 0.75em;
    color: var(--telo-text-muted);
    display: block;
    text-align: right;
}

.telo-photos-picker-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.telo-photo-placeholder {
    text-align: center;
    color: var(--telo-primary);
}

.telo-photo-placeholder-text {
    display: block;
    font-weight: bold;
    font-size: 0.9rem;
}

.telo-photo-adicional-label {
    font-weight: 600;
    font-size: 0.85em;
    margin-bottom: -0.5rem;
}

.telo-photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.telo-plus-icon {
    color: var(--telo-text-muted);
}

.telo-warning-box {
    border: 1px solid var(--telo-warning);
    background-color: rgba(255, 183, 3, 0.05);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9em;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.telo-warning-box-title {
    color: #d48b00;
    font-weight: bold;
}

.telo-warning-box-link {
    font-weight: bold;
    text-decoration: underline;
    color: var(--telo-primary);
}

.telo-hidden {
    display: none;
}
