/* MBS Prayer Pro Styles */

.mbs-prayer-form-container {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    max-width: 600px;
    margin: 2rem auto;
}

.mbs-prayer-form-container h2 {
    color: var(--color-accent-gold, #D4AF37);
    margin-bottom: 1.5rem;
    text-align: center;
}

.mbs-prayer-form .form-group {
    margin-bottom: 1.5rem;
}

.mbs-prayer-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mbs-prayer-form input, 
.mbs-prayer-form textarea,
.mbs-prayer-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mbs-prayer-form input:focus, 
.mbs-prayer-form textarea:focus {
    border-color: var(--color-accent-gold, #D4AF37);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.mbs-prayer-form .btn-submit {
    width: 100%;
    background: var(--color-accent-gold, #D4AF37);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mbs-prayer-form .btn-submit:hover {
    background: #b8972f;
}

/* Prayer Wall Grid */
.mbs-prayer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.mbs-prayer-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-accent-gold, #D4AF37);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.mbs-prayer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.mbs-prayer-card .request-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.mbs-prayer-card .request-content {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mbs-prayer-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.btn-i-prayed {
    background: transparent;
    border: 1px solid var(--color-accent-gold, #D4AF37);
    color: var(--color-accent-gold, #D4AF37);
    padding: 6px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-i-prayed:hover, .btn-i-prayed.prayed {
    background: var(--color-accent-gold, #D4AF37);
    color: #fff;
}

.prayer-count {
    font-size: 0.85rem;
    color: #aaa;
}
