/*
 * style.css for National Day Finder Plugin
 */

#national-day-finder-app {
    font-family: Arial, sans-serif;
    max-width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

/* Controls (Date Picker and Search) */
.ndf-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
}

.ndf-controls input[type="date"],
.ndf-controls input[type="text"] {
    flex-grow: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.ndf-controls button {
    padding: 8px 15px;
    background-color: #0073aa; /* WordPress primary color */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.ndf-controls button:hover {
    background-color: #005a87;
}

/* Results Section */
.ndf-results-section h3 {
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
    margin-top: 20px;
    font-size: 1.2em;
    color: #333;
}

#ndf-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#ndf-results-list li {
    padding: 10px 0;
    border-bottom: 1px dotted #e0e0e0;
}

#ndf-results-list li:last-child {
    border-bottom: none;
}

#ndf-results-list li strong {
    font-weight: 600;
    color: #111;
}

/* Error and Message Styling */
.ndf-error {
    color: #dc3232; /* WordPress error red */
    font-weight: bold;
    background-color: #ffeeee;
    padding: 10px;
    border-radius: 4px;
    border-left: 5px solid #dc3232;
}