
.salatm-widget {
    font-family: 'Segoe UI', Arial, sans-serif;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(30,58,95,0.18);
    margin: 24px 0;
    max-width: 520px;
    background: #f8f4ff;
}

/* CABECERA */
.salatm-cab {
    background: linear-gradient(135deg, #1e3a5f 0%, #8e44ad 100%);
    padding: 28px 24px 22px;
    text-align: center;
    color: #fff;
}
.salatm-titulo {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.salatm-reloj {
    font-size: 44px;
    font-weight: 300;
    letter-spacing: 3px;
    font-variant-numeric: tabular-nums;
    margin-bottom: 10px;
}
.salatm-proxima {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 5px 18px;
    font-size: 13px;
    font-weight: 600;
}

/* BUSCADOR */
.salatm-buscar {
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid #ede8f5;
}
.salatm-fila {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.salatm-campo label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #8e44ad;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.salatm-input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #ede8f5;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.salatm-input:focus {
    border-color: #8e44ad;
}
.salatm-metodo-wrap {
    margin-bottom: 12px;
}
.salatm-metodo-wrap label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #8e44ad;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.salatm-select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #ede8f5;
    border-radius: 10px;
    font-size: 13px;
    outline: none;
    background: #fff;
    color: #1e3a5f;
    box-sizing: border-box;
}
.salatm-select:focus {
    border-color: #8e44ad;
}
.salatm-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #1e3a5f, #8e44ad);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: opacity 0.2s;
}
.salatm-btn:hover {
    opacity: 0.9;
}
.salatm-sugerencias {
    background: #fff;
    border: 2px solid #ede8f5;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    display: none;
}
.salatm-sug-item {
    padding: 9px 14px;
    cursor: pointer;
    font-size: 13px;
    border-bottom: 1px solid #f3f0f9;
    transition: background 0.15s;
}
.salatm-sug-item:hover {
    background: #f0e8ff;
    color: #8e44ad;
    font-weight: 600;
}
.salatm-sug-item:last-child {
    border-bottom: none;
}

/* RESULTADO */
.salatm-resultado {
    padding: 16px 20px 0;
}
.salatm-ciudad-nombre {
    font-size: 20px;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 2px;
}
.salatm-fecha {
    font-size: 13px;
    color: #8e44ad;
    margin-bottom: 12px;
}
.salatm-oraciones {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ede8f5;
    margin-bottom: 16px;
}
.salatm-oracion {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    background: #fff;
    border-bottom: 1px solid #f3f0f9;
    position: relative;
    transition: background 0.2s;
}
.salatm-oracion:last-child {
    border-bottom: none;
}
.salatm-oracion::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--c);
    border-radius: 0 3px 3px 0;
}
.salatm-oracion.activa {
    background: linear-gradient(90deg, rgba(142,68,173,0.07), transparent);
}
.salatm-oracion.activa::before {
    width: 6px;
}
.salatm-ico {
    font-size: 22px;
    width: 32px;
    text-align: center;
}
.salatm-on {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    color: #1e3a5f;
}
.salatm-on small {
    display: block;
    font-size: 11px;
    color: #8e44ad;
    font-weight: 400;
}
.salatm-hora {
    font-size: 20px;
    font-weight: 800;
    color: var(--c);
    font-variant-numeric: tabular-nums;
    min-width: 56px;
    text-align: right;
}

/* FOOTER */
.salatm-footer {
    background: linear-gradient(90deg, #1e3a5f, #8e44ad);
    color: rgba(255,255,255,0.75);
    text-align: center;
    font-size: 11px;
    padding: 8px;
}

/* ERROR */
.salatm-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    margin: 10px 20px;
}
