/* Sermon Page Styles */

/* Keep and enhance the table styles */
.sermon-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sermon-table th,
.sermon-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.sermon-table th {
    background-color: #334fdc;
    color: white;
    font-weight: bold;
}

/* Sermon Table Column Widths */
.sermon-table th:nth-child(1) {  /* Date column */
    width: 15%;
}

.sermon-table th:nth-child(2) {  /* Title column */
    width: 45%;
}

.sermon-table th:nth-child(3) {  /* Links column */
    width: 10%;
}

.sermon-table th:nth-child(4) {  /* Speaker column */
    width: 20%;
}

.sermon-table tr:hover {
    background-color: #f5f5f5;
}

/* Format Icons */
.format-icons {
    display: flex;
    gap: 8px;  /* Reduced gap between icons */
    align-items: center;
    justify-content: center;
}

.format-link {
    display: inline-block;
    width: 20px;     /* Reduced from 24px */
    height: 20px;    /* Reduced from 24px */
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.format-link:hover {
    opacity: 1;
    transform: scale(1.1);
}

.audio-icon {
    background-image: url('../images/download-mp3.png');
}

.youtube-icon {
    background-image: url('../images/mp4.png');
}

.doc-icon {
    background-image: url('../images/text.png');
}

/* Search Section */
.sermon-search {
    margin: 30px 0;
}

.search-container {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

#sermonSearch {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
}

#categoryFilter {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    min-width: 150px;
}

#sermonSearch:focus,
#categoryFilter:focus {
    outline: none;
    border-color: #334fdc;
    box-shadow: 0 0 5px rgba(51, 79, 220, 0.3);
}

/* Download Buttons and Icons */
.format-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.format-icon {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.format-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

.download-button {
    display: inline-block;
    padding: 5px 15px;
    background-color: #334fdc;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #2438a8;
}