@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Color Variables */
:root {
    --primary-purple: #000;
    --primary-color: #000;
    --light-purple: #000;
    --eco-green: #2E8B57;
    --success-green: #28A745;
    --error-red: #DC3545;
    --text-primary: #2C3E50;
    --text-secondary: #6C757D;
    --background-light: #F8F9FA;
    --white: #FFFFFF;
    --bgCalender: #FFFFFF;
    --bgButton: #000;
    --border-light: #E9ECEF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --gradient-overlay: linear-gradient(135deg, rgba(139, 74, 156, 0.8), rgba(46, 139, 87, 0.6));
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #F8F9FA;
}
