:root{
    --primary-color: #FF6B03;
    --font-family: "cairo"
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    direction: rtl;
    font-family: var(--font-family);
}

body {
    display: flex;
    flex-direction: column;
}

/* Global "restaurant closed" top bar */
.noqta-status-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2002;
    background: #e15241;
    color: #fff;
    padding: 10px 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.noqta-status-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.1px;
    text-align: center;
    font-size: 13.5px;
}

.noqta-status-bar__icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.noqta-status-bar__text {
    font-size: 13.5px;
}

/* Push the site down so the fixed bar doesn't cover the header/content */
body.noqta-has-status-bar {
    padding-top: 46px;
}

svg {
    height: auto;
}

a {
    text-decoration: none
}

#root {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 12px;
    margin-bottom: 100px;
}