.prayer-form {
    max-width: auto; /*500px*/
    margin: 0 auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    font-family: "Inter", sans-serif;
}

.prayer-form label {
    font-weight: 600;
    margin-top: 15px;
    display: block;
    color: #333;
}

.prayer-form input[type="text"],
.prayer-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    margin-top: 5px;
    font-size: 15px;
}

.prayer-form textarea {
    height: 120px;
    resize: vertical;
}

.prayer-form button {
    margin-top: 20px;
    width: 100%;
    background: #DCA54A;
    color: #fff;
    padding: 13px;
    border: none;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.prayer-form button:hover {
    background: #d88601;
}

.prayer-form input[type="checkbox"] {
    margin-right: 8px;
}

.prayer-success {
    background: #e6ffe6;
    padding: 12px 15px;
    border-left: 4px solid #26a826;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #2b662b;
}



.prayer-wall {
    max-width: auto; /*800px*/
    margin: 30px auto;
    font-family: 'Segoe UI', sans-serif;
}

.prayer-card {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.prayer-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}

.prayer-card p {
    font-size: 16px;
    margin-bottom: 15px;
}

/* boton de orar habilitado */
.pray-btn {
    background: #4a7cff;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.pray-btn:hover {
    background: #3a63d1;
}

/* boton de orar deshabilitado */
.pray-btn-disabled {
    opacity: 0.6;
    
    background-color: #ccc !important;
    color: #555 !important;
    border: none;
}


.prayer-pagination {
    text-align: center;
    margin-top: 25px;
}

/* paginación */
.prayer-pagination a {
    padding: 8px 12px;
    text-decoration: none;
    margin: 0 5px;
    border-radius: 6px;
    background: #e4e4e4;
    color: #333;
}

.prayer-pagination a.active {
    background: #4a7cff;
    color: white;
    font-weight: bold;
}

.prayer-date {
    color: #8d8c8c;
    font-size: 10px;
    font-style: italic;
    margin-top: -8px;
    margin-bottom: 8px;
}

.pray-btn {
    padding: 8px 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    background: #0073aa; /* azul */
    color: white;
    transition: all .2s ease;
}

.pray-btn:hover {
    color: white;
    background-color: #0699dd;
}

.pray-btn.active {
    background: #28a745 !important; /* verde */
}

.pray-btn.active:hover {
    background: #07c534 !important; /* verde */
}

.login-message{
    background: #e6ffe6;
    padding: 12px 15px;
    border-left: 4px solid #044eee;
    border-radius: 6px;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 600px;
    font-weight: 600;
    color: #044eee;
}


/* CONTENEDOR DE BOTONES DE FILTRO */
.prayer-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

/* ESTILO BASE DE LOS BOTONES */
.prayer-filter-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: inline-block;
    color: white;
    text-decoration: none !important;
    transition: 0.2s ease;
}

/* BOTÓN AZUL (como ORAR) */
.prayer-filter-orar {
    background-color: #0073aa;
    color: white;
}
.prayer-filter-orar:hover {
    color: white;
    background-color: #0699dd;
}

/* BOTÓN VERDE (como EN ORACIÓN) */
.prayer-filter-orando {
    background-color: #28a745;
    color: white;
}
.prayer-filter-orando:hover {
    background: #07c534;
    color: white;
}

/* BOTÓN NEUTRO (mostrar todas) */
.prayer-filter-all {
    background-color: #6c757d;
    color: white;
}
.prayer-filter-all:hover {
    background-color: #565e64;
    color: white;
}

/* RESPONSIVE: EN MÓVIL LOS BOTONES SE HACEN FULL WIDTH */
@media (max-width: 480px) {
    .prayer-filters {
        flex-direction: column;
        gap: 10px;
    }

    .prayer-filter-btn {
        width: 100%;
        text-align: center;
    }
}








