/* Findfill Shifts Board Base Styles */

.findfill-shifts-board-wrapper {
    width: 100%;
    margin: 0 auto;
    font-family: inherit;
}

.findfill-shifts-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    align-items: center;
}

.findfill-filter-dropdown {
    flex: 1;
    min-width: 150px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.findfill-filter-btn {
    padding: 10px 24px;
    background-color: #0073aa;
    /* Typical WP blue, can be overridden by theme */
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.findfill-filter-btn:hover {
    background-color: #005177;
}

.findfill-shifts-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); */
    gap: 20px;
    margin-bottom: 40px;
}

/* Fallback Card Styles (Used only if Elementor Template is NOT provided) */
.findfill-shift-card.basic-fallback {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.findfill-shift-card.basic-fallback h3 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
}

.findfill-shift-card.basic-fallback p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.findfill-shift-card.basic-fallback a {
    display: inline-block;
    margin-top: 15px;
    color: #0073aa;
    text-decoration: none;
    font-weight: 600;
}

.findfill-shift-card.basic-fallback a:hover {
    text-decoration: underline;
}

/* Elementor Template Card Wrapper */
.findfill-shift-card-wrapper {
    display: block;
    /* The internal Elementor styles will handle the rest */
}