.header {
    background-color: white;
    color: black;
    height: 104px;
    width: 100%;
    display: flex;
    align-items: center;
}

.header h1 {
    margin: 0;
    font-size: 24px;
}

/* button,
input {
    border-radius: 0;
} */

.text1 {
    font-size: x-large;
    font-weight: bold !important;
}

/* Container to align buttons */
.button-container {
    display: flex;
    gap: 10px;
    /* Space between buttons */
    justify-content: center;
    /* Center buttons horizontally */
    margin-top: 20px;
}

/* Common styles for buttons */
.custom-button {
    background-color: #e0e0e0;
    /* Light gray background */
    border: 1px solid #c0c0c0;
    /* Slightly darker border */
    padding: 10px 20px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

/* Active button style (blue border) */
.custom-button.active {
    border-color: #007bff;
    /* Blue border for active button */
    box-shadow: 0 0 5px #007bff;
}

/* Hover effect */
.custom-button:hover {
    background-color: #d6d6d6;
}

.footer {
    background-color: white;
    color: black;
    height: 90px;
    width: 100%;
    display: flex;
    align-items: center;
}