/* public/static/Styles/global.css */
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #CF152D; 
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    /* Ensure the body takes up at least the full height */
    min-height: 100vh;
    
    /* background-image: url(../Images/pages/bg.jpg); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background: linear-gradient(135deg, #dfc466 0%, #f8efb1 40%, #e8d27a 60%, #b29433 100%);  */
    display: flex;
    justify-content: center;
    align-items: center;
        background-color: #CF152D;
    /* Safe area insets applied only to body */
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    
    box-sizing: border-box; /* Prevent padding from causing overflow */
    overflow: hidden;
}

/* Ensure no other element overrides this unless specifically intended */
body {
    /* position: fixed;
    top: 0;
    left: 0; */
    color: #fff;
}
