/* Due Date 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;
}

/* Due Date Highlight Box */
.due-date-highlight {
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, #e8f4fd 0%, #d0e8f9 100%);
    border-radius: 8px;
    margin-bottom: 16px;
}

.due-date-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.due-date-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.due-date-value {
    font-size: 28px;
    font-weight: 700;
    color: #003049;
}

/* Results value styling */
.results-value {
    font-weight: 600;
    color: #003049;
}

/* Milestone grid - single column */
.milestone-grid {
    grid-template-columns: 1fr;
}

/* Milestones list */
.milestones-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.milestone-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    border-left: 3px solid #003049;
}

.milestone-item.past {
    opacity: 0.6;
    border-left-color: #16a34a;
}

.milestone-item.current {
    background: rgba(0, 48, 73, 0.08);
    border-left-color: #fcbf49;
}

.milestone-item.future {
    border-left-color: #bae6fd;
}

.milestone-week {
    min-width: 60px;
    font-weight: 600;
    color: #003049;
    font-size: 14px;
}

.milestone-content {
    flex: 1;
}

.milestone-title {
    font-weight: 600;
    color: #003049;
    margin-bottom: 2px;
}

.milestone-description {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.milestone-date {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

.milestone-status {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.milestone-status.completed {
    background: #dcfce7;
    color: #16a34a;
}

.milestone-status.current {
    background: #fef3c7;
    color: #d97706;
}

.milestone-status.upcoming {
    background: #e0f2fe;
    color: #0284c7;
}

/* Progress section styling */
.results-item {
    color: #003049;
    font-size: 15px;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .due-date-value {
        font-size: 24px;
    }

    .milestone-item {
        flex-direction: column;
        gap: 8px;
    }

    .milestone-week {
        min-width: auto;
    }
}

@media (min-width: 640px) {
    .due-date-value {
        font-size: 32px;
    }
}
