
@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Public+Sans:wght@200..800&family=Bubblegum+Sans&family=Manrope:wght@200..800&family=Rancho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


/* Ensure body and html take full height */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

/* Ensure the page uses flexbox layout */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures the body takes at least the full viewport height */
    background: rgb(202, 198, 198);
  
}


:root {
    --primary: #a8180d;
    --primary-dark: #8a1409;
    --secondary: #f7f7f7;
    --dark: #171717;
    --warning: #c79900;
    --warning-light: rgba(199, 153, 0, 0.15);
    --gray-100: #f7f7f7;
    --gray-200: #e5e7eb;

    --light-gray: #e9ecef;
    --medium-gray: #adb5bd;
    --slight-gray: #75757512;
            --accent-color: #e74c3c;
            --dark-color: #2c3e50;
            --light-color: #ecf0f1;
            --refund-color: #e67e22;
            --reschedule-color: #2ecc71;

}

/* Push content to fill available space */
    
/* Remove unnecessary padding-bottom from body */
