/* Styles for Obit List Plugin */

.arrangement-list-full {
    font-family: Arial, sans-serif;
    color: #333;
}

/* Search and Sort Form */
.full-list-search {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.name-search input[type="text"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.name-search input[type="submit"],
.name-search .clear-button {
    padding: 8px 15px;
    border: 1px solid #666;
    background-color: #666;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
}
.name-search .clear-button {
    background-color: #aaa;
    border-color: #aaa;
}

.deceased-sort-by-section select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Obituary List Container */
.full-list-container {
    border-top: 1px solid #eee;
}
.tribute-row {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    background-color: #fff;
}
.image-column {
    flex: 0 0 150px;
    margin-right: 20px;
}
.deceased-image a {
    display: block;
    width: 150px;
    height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
}

.tribute-detail-data {
    flex: 1;
}
.deceased-name {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: bold;
}
.deceased-name a {
    color: #333;
    text-decoration: none;
}
.deceased-name a:hover {
    color: #000;
}
.deceased-date-of-death,
.deceased-funeral-home-location {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}
.deceased-date-of-death label {
    font-weight: bold;
    margin-right: 5px;
}
.tribute-buttons {
    margin-top: 15px;
}
.tribute-buttons .button-layout a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #666;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.tribute-buttons .button-layout a:hover {
    background-color: #555;
}

/* Paginator */
.paginator {
    margin: 20px 0;
    text-align: center;
}
.paginator .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #333;
    background-color: #fff;
}
.paginator .page-numbers:hover {
    background-color: #f0f0f0;
}
.paginator .page-numbers.current {
    background-color: #666;
    color: #fff;
    border-color: #666;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 600px) {
    .full-list-search {
        flex-direction: column;
        align-items: stretch;
    }
    .tribute-row {
        flex-direction: column;
    }
    .image-column {
        margin-right: 0;
        margin-bottom: 15px;
        align-self: center;
    }
    .deceased-image a {
        width: 120px;
        height: 120px;
    }
}