/* ---------- BUTTONS (STRONG, CLICKABLE, WEDDING-THEMED) ---------- */
#wtg-generate,
#wtg-export-pdf,
#wtg-export-csv {
    background: #e91e63;           /* Vibrant magenta-pink (wedding pop) */
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem 0.3rem;
    cursor: pointer;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: inline-block;
    min-width: 160px;
    text-align: center;
}

#wtg-generate:hover,
#wtg-export-pdf:hover,
#wtg-export-csv:hover {
    background: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

#wtg-generate:active,
#wtg-export-pdf:active,
#wtg-export-csv:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Optional: Soften the "Generate Timeline" button slightly */
#wtg-generate {
    background: #ff4081;           /* Slightly softer pink for primary action */
}
#wtg-generate:hover {
    background: #f50057;
}

#wtg-progress-chart {
    max-height: 280px;
    width: 100% !important;
    margin: 1.5rem 0;
}

/* MOBILE TAP OPTIMIZATION */
#wtg-generate,
#wtg-add-custom,
#wtg-export-pdf,
#wtg-export-csv {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 48px;
    font-size: 16px; /* Prevents zoom on iOS */
    line-height: 1.5;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    outline: none;
}

#wtg-wedding-date {
    font-size: 16px; /* Prevents zoom on date input */
}

/* Disable hover on touch devices */
@media (hover: none) and (pointer: coarse) {
    .wtg-btn:hover {
        background: inherit !important;
        transform: none !important;
    }
}