* {
    box-sizing: border-box;
    padding: 0;
    margin: 0
}

a {
    text-decoration: none;
    color: inherit;
}

html {
    height: 100%;
    width: 100%;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;

    width: 100%;
    grid-template-columns: 1fr;
    /* ✅ ONE column */
    grid-template-rows: auto 1fr;
    height: 100%;
    position: relative;
}

header {

    background-color: #35424a;
    color: #ffffff;
    padding: 10px 0;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    flex-direction: column;
}

.branchName {
    font-size: 0.8rem;

}


main {
    /* grid-column: 2 / 3; */
    height: 100%;

    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: flex-start;

}

#Menubutton {
    background-color: #e8491d;
    position: absolute;
    right: -15px;
    top: 50%;
    height: 80px;
    width: 15px;
    border-radius: 0px 8px 8px 0px;
    font-size: 0.7rem;
    color: white;
    cursor: pointer;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

input,
select,
textarea {
    font-size: 16px;
    /* IMPORTANT */
}