/* style.css */
body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background-color: #ecfdf5;
    padding: 6px;
    cursor: pointer;
    border-radius: 8px;
    color: #047857;
    transition: all 0.2s ease-in-out;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    background-color: #d1fae5;
    transform: scale(1.05);
}

input:focus, textarea:focus, select:focus {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}