/* Ovulation Calculator Specific Styles */

/* Action Button */
.action-button {
    width: 100%;
    padding: 12px 24px;
    background: #003049;
    border: 1px solid #003049;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.action-button:hover {
    background: #00436b;
    border-color: #00436b;
}

/* Cycle hint text */
.cycle-hint {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

/* Ovulation Highlight Box */
.ovulation-highlight {
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 8px;
    margin-bottom: 16px;
}

.ovulation-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ovulation-label {
    font-size: 14px;
    color: #92400e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ovulation-value {
    font-size: 28px;
    font-weight: 700;
    color: #92400e;
}

/* Fertile Window Box */
.fertile-window-box {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-radius: 8px;
    padding: 16px;
}

.fertile-period {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    margin-bottom: 12px;
}

.fertile-label {
    font-size: 14px;
    color: #166534;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fertile-dates {
    font-size: 20px;
    font-weight: 600;
    color: #166534;
}

.fertile-description {
    font-size: 13px;
    color: #166534;
    text-align: center;
    margin: 0;
    opacity: 0.8;
}

/* Results value styling */
.results-value {
    font-weight: 600;
    color: #003049;
}

/* Results item styling */
.results-item {
    color: #003049;
    font-size: 15px;
    line-height: 1.5;
}

/* Cycles list */
.cycles-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cycle-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    border-left: 3px solid #003049;
}

.cycle-item:nth-child(1) {
    border-left-color: #f59e0b;
}

.cycle-item:nth-child(2) {
    border-left-color: #3b82f6;
}

.cycle-item:nth-child(3) {
    border-left-color: #8b5cf6;
}

.cycle-header {
    font-weight: 600;
    color: #003049;
    font-size: 14px;
}

.cycle-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: #374151;
}

.cycle-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cycle-detail-label {
    color: #666;
}

.cycle-detail-value {
    font-weight: 500;
    color: #003049;
}

.cycle-fertile {
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px dashed #d1d5db;
    font-size: 13px;
}

.fertile-badge {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .ovulation-value {
        font-size: 24px;
    }

    .fertile-dates {
        font-size: 18px;
    }

    .cycle-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
}

@media (min-width: 640px) {
    .ovulation-value {
        font-size: 32px;
    }

    .fertile-dates {
        font-size: 22px;
    }

    .cycle-details {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .cycle-detail-row {
        gap: 8px;
    }
}
