:root {
    --orange: #ff5f15;
    --orange-shade: #cc4c11;
    --blue: #3357FF;
    --blue-shade: #2c4dbd;
    --highlight: #adbbff;
    --chicken:
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

.hidden {
    display: none !important;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

header .header {
    display: flex;
}

.all-buttons {
    display: flex;
}

.admin-buttons {
    display: flex;
    justify-content: right;
    width: 100%;
}

@media only screen and (max-width: 600px) {
    header {
        flex-direction: column;
    }

    .all-buttons {
        flex-direction: column;
        align-items: center;
    }

    .admin-buttons {
        justify-content: center;
    }
}

header h1 {
    margin: auto;
    line-height: 50px;
}

#icon {
    height: 50px;
    width: 50px;
    margin-right: 20px;
    cursor: pointer;
    margin-top: auto;
    margin-bottom: auto;
    padding-bottom: 16px;
    max-width: none;
}

.buttons {
    display: flex;
}

.round-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--blue);
    color: white;
    margin-left: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    border: none;
}

.round-button .notify-bubble {
    background: red;
    border-radius: 20px;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -1px;
    right: -1px;
    font-size: small;
    font-weight: bold;
}

a.round-button {
    text-decoration: none;
}

.round-button i {
    font-size: 16px;
}

.round-button:hover {
    background-color: var(--blue-shade);
}

.round-button.admin {
    background-color: var(--orange);
}

.round-button.admin:hover {
    background-color: var(--orange-shade);
}

h1 {
    text-align: center;
}

.recipe-item .recipe-info .info-item {
    display: inline-block;
    margin-right: 10px;
}

.warning {
    color: red;
}

#errors {
    color: red;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}