/* Food Competition BlazorWasm Styles */

/* Countdown Component Styles */
.fc-countdown {
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fc-countdown .countdown-header {
    display: block;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Home Carousel Countdown Styles */
.fcp-home-countdown {
    margin-bottom: 20px;
}

.fcp-home-countdown .fc-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fcp-home-countdown .fc-card > h6 {
    display: block;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Countdown Timer Styles */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 60px;
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #FBB203;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.875rem;
    color: #666;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Charity Card Selection Styles */
.charity-card-wrapper {
    margin-bottom: 1rem;
}

.charity-radio-container {
    padding-top: 1rem;
    display: flex;
    align-items: flex-start;
}

.radio-label {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.selected-charity-card {
    border: 2px solid #007bff !important;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2) !important;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.fc-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.charity-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.fc-card-image {
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.charity-title-link {
    color: inherit;
    text-decoration: none;
}

.charity-title-link:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Radio button styling */
input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #007bff;
}