.sermon-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 20px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.sermon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.sermon-date {
    color: #007bff;
    font-weight: bold;
    margin-bottom: 10px;
}

.sermon-title {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.sermon-verse {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

.sermon-preview {
    color: #007bff;
    font-size: 0.9em;
}

.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: #f8f9fa;
    border-radius: 15px 15px 0 0;
    padding: 1.5rem;
}

.modal-body {
    padding: 2rem;
}

.scripture-box {
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.message-content {
    margin-bottom: 30px;
    line-height: 1.6;
}

.prayer-section {
    background: linear-gradient(135deg, #dc3545, #8b0000);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    position: relative;
}

.prayer-section h5 {
    color: white;
    margin-bottom: 15px;
}

.time-stamp {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 0.8em;
    opacity: 0.8;
}

.message-signature {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.ministry-motto {
    font-style: italic;
    color: #666;
    font-size: 0.9em;
    margin-top: 10px;
}

.scripture-box {
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 15px;
    margin: 15px 0;
    border-radius: 5px;
}

.scripture-text {
    font-style: italic;
    color: #555;
}

.message-content {
    margin-top: 20px;
}

.message-signature {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.ministry-motto {
    font-size: 0.9em;
    color: #666;
    font-style: italic;
}

.prayer-section {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #dc3545, #8b0000);
    color: white;
    border-radius: 10px;
}

.prayer-content {
    position: relative;
}

.prayer-content h5 {
    color: white;
    margin-bottom: 15px;
}

.prayer-text {
    margin-top: 20px;
    font-size: 1.1em;
    line-height: 1.6;
}

.time-stamp {
    position: absolute;
    bottom: -15px;
    right: 0;
    font-size: 0.8em;
    opacity: 0.8;
    color: rgba(255,255,255,0.8);
}

.sermon-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.sermon-meta .date {
    font-weight: bold;
    color: #007bff;
}

.sermon-meta .topic {
    background: #e9ecef;
    padding: 2px 10px;
    border-radius: 15px;
    font-size: 0.9em;
}