/*general styling*/
* {
    box-sizing: border-box;
}

html, body {
    background-color: #F9D9BB;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    margin: 0;
}

.page {
    display: flex;
    flex-direction: column;
    flex: 1;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    padding: 0px;
}

header .header-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 38px;
    background-color: #F5A582;
    padding: 10px 20px;
}

.header-img-container{
    display: flex;
    justify-content: space-between;
}

.size{
    height: 100px;
    width: 100px;
}

.headerimage {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.center-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.headerimage img, .center-logo img {
    max-height: 100%;
}

.header-text .left,
.header-text .right {
    display: flex;
    align-items: center;
}

.header-text .left {
    gap: 20px;
}

.header-text .right {
    gap: 15px;
}

.header-link, .email, .cart-icon {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.cart-icon {
    font-size: 20px;
}

/*footer styling*/
.footer-container {
    display: flex;
    justify-content: space-evenly;
    text-align: start;
    background-color: #F5BA83;
    width: 100%;
    height: 130px;
    padding: 15px 0;
    margin-top: auto;
}

/*login.html styling*/
#login-form{
    text-align: center;
}

.error {
    color: red;
}

#velkommen, #log-text{
    margin-bottom: 20px;
}

.intro-text{
    font-size: 20px;
}

.menu-drop{
    font-size: 15px;
    text-align: center;
}

label{
    font-size: 20px;
}

.opret-bruger{
    font-size: 20px;
}
#email, #password {
    width: 230px;
    height: 30px;
    font-size: 15px;
    text-align: center;
    background-color: #D9D9D9;
    border-style: none;
    border-radius: 5%;
    margin-bottom: 10%;
    margin-top: 5%;
}

#sub_button {
    display: block;
    margin: auto;
    margin-bottom: 15%;
    margin-top: 25px;
    padding: 5px 40px;
    background-color: #F5A582;
    border-radius: 15px;
    border: none;
    outline: none;
    color: white;
    font-size: large;
    box-shadow: 0 9px #999;
}

#sub_button:hover {
    background-color: #F3986F;
}

#sub_button:active {
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}

/*bestil.html styling*/
.intro-headline{
    font-size: 30px;
}

.intro-text{
    font-size: 15px;
}
#bund, #topping, #antal {
    width: 180px;
    height: 25px;
    font-size: 15px;
    text-align: center;
    background-color: #D9D9D9;
    border-style: none;
    border-radius: 10%;
    margin-bottom: 10%;
    margin-top: 15px;
}

#container-bestil-bottons{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 25px;
    padding: 5px 40px;
}

.kurv {
    display: flex;
    font-size: 24px;
    text-decoration: none;
}

.order-button {
    display: block;
    height: 30px;
    width: 130px;
    font-size: 15px;
    margin-top: 25px;
    background-color: #F5A582;
    border-radius: 15px;
    border: none;
    outline: none;
    color: white;
    box-shadow: 0 9px #999;
}

.order-button:hover{
        background-color: #F3986F;
}

.order-button:active {
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}

.cart{
    margin-bottom: 30px;
}

.toCart-button {
    display: block;
    height: 30px;
    width: 130px;
    font-size: 15px;
    margin-top: 25px;
    background-color: #F5A582;
    border-radius: 15px;
    border: none;
    outline: none;
    color: white;
    box-shadow: 0 9px #999;
}

.toCart-button:hover{
    background-color: #F3986F;
}

.toCart-button:active {
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}
.plads-top{
    margin-top: 5%;
}

/* kurv.html styling*/
.cart-table, .admin-tabel, th, td {
    margin: auto;
    margin-top: 35px;
    font-size: 15px;
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
    border-radius: 10px;
}

tbody{
    font-size: 10px;
    font-weight: normal;
}

.delete-btn{
    font-size: 25px;
    font-weight: bold;
    color: #5C5A5B;
    text-decoration: none;
}

.total{
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.køb-knap{
    display: block;
    justify-content: center;
    height: 30px;
    width: 120px;
    font-size: 15px;
    margin-top: 15px;
    background-color: #F5A582;
    border-radius: 15px;
    border: none;
    outline: none;
    color: white;
    box-shadow: 0 9px #999;
}

.køb-knap:hover{
    background-color: #F3986F;
}

.køb-knap:active {
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}

/* opretbruger.html styling*/
#name, #opret-email, #mobile, #password1, #password2 {
    width: 200px;
    height: 20px;
    font-size: 15px;
    text-align: center;
    background-color: #D9D9D9;
    border-style: none;
    border-radius: 5%;
    margin-bottom: 10px;
    margin-top: 10px;
}

.opret-knap{
    display: block;
    justify-content: center;
    width: 110px;
    height: 25px;
    margin-top: 30px;
    background-color: #F5A582;
    border-radius: 15px;
    border: none;
    outline: none;
    color: white;
    box-shadow: 0 9px #999;
}

.opret-knap:hover{
    background-color: #F3986F;
}

.opret-knap:active {
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}

/* Admin styling */
.admin-tabel, th, td {
    font-size: 1.5em;
    padding-left: 1vw;
    padding-right: 4.5vw;
    text-align: left;
    padding-top: 7px;
    padding-bottom: 7px;
    border-radius: 0;

}
tr:nth-of-type(even) {
    background-color: #F5A582 !important;
}

.admin-centertext{
    text-align: center;
}


/*tak.html styling*/
.tak-adresse {
    margin-top: 20px;
}

.tak-adresse p {
    margin-top: 2px;
    margin-bottom: 2px;
    text-align: center;
}

.middle{
    display: flex;
    justify-content: center;
}