
body {
    font-family: 'Lora', sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;  
    color: #333;
  
  
}
.container {
    max-width: 800px;
    margin: 20px auto;
    background-image: url(backkk.jpg);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  
}
h1, h2 {
    font-weight: 900;  /* Make headings bold using the imported font */

}
.form-group {
    margin: 15px 0;
}
input, select, button {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: all 0.3s ease; /* Smooth transition for inputs and buttons */
}
button {
    background-color: #3a0e22;
    color: white;
    border: none;
    cursor: pointer;
}

#total-expenses {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    animation: fadeInText 1s ease-in-out;
}
ul {
    list-style: none;
    padding: 0;
}

/* Style for members list */
li {
    background: rgb(241, 128, 111);  /* Red background for the whole box */
    color: white;      /* White text for contrast */
    margin: 4px 0;
    padding: 1px 2px; /* Smaller padding for the red box */
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;  /* Smaller font size */
    width: 100px;  /* Set a fixed width for the box */
}

/* Style for member name */
li span {
    font-weight: bold;
    flex-grow: 1;  /* Allow member name to take up space */
        font-family: 'Roboto', sans-serif;  /* Apply Roboto to member names */
      
    
}

/* Style for remove (cross) button */
li button {
    background-color: transparent;  /* Transparent background */
    color: white;                    /* White text color */
    border: none;                    /* Remove border */
    font-size: 18px;                  /* Larger font size for the cross */
    cursor: pointer;                 /* Pointer cursor on hover */
    outline: none;                   /* Remove the blue outline */
}

/* Hover effect for the button */
li button:hover {
    color: #ddd;  /* Light grey color on hover */
}

#trip-name {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}
#trip-name-section {
    display: block;
    opacity: 0;
    animation: fadeInSection 1s forwards 0.3s;
}
#add-member-section {
    display: none;
    opacity: 0;
    animation: fadeInSection 1s forwards 0.6s;
}
#settle-balances-section {
    display: none;
    opacity: 0;
    animation: fadeInSection 1s forwards 0.9s;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeInText {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeInList {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes slideUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fadeInSection {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


#background-video {
    position: fixed; /* Use fixed positioning to keep the video in place */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes the video cover the entire page */
    z-index: -1; /* Keep the video behind content */
    pointer-events: none; /* Allow interaction with other elements */
}
