@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3; /* Light grey */
    border-top: 5px solid #383636; /* Black */
    border-radius: 50%;
    animation: spinner 1.5s linear infinite;
}

.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 98vh;
    flex-direction: column;
}

.loading-spinner-small {
    width: 30px;
    height: 30px;
}

#reload-btn {
    display: none;
    color: #ffffff;
    background: #007bff;
    border: 1px solid #007bff;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    transition:
        background-color 0.15s,
        border-color 0.15s,
        box-shadow 0.15s;
    border-radius: 4px;
    margin-top: 10px;
    cursor: pointer;
}

/* src/assets/fonts/fonts.css */
@font-face {
    font-family: 'Halyard Display';
    src: url('./fonts/Halyard_Display_Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Halyard Display';
    src: url('./fonts/Halyard_Display_Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Halyard Display';
    src: url('./fonts/Halyard_Display_ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Halyard Display';
    src: url('./fonts/Halyard_Display_Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Halyard Display';
    src: url('./fonts/Halyard_Display_Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Halyard Display';
    src: url('./fonts/Halyard_Display_SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

.p-orderlist .p-orderlist-header {
    padding: 0.5rem 0.2rem 0.2rem;
}

.p-orderlist {
    display: flex;
    flex-direction: row-reverse;
}

.p-orderlist-controls {
    margin-left: 1rem;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.p-orderlist-list {
    max-height: 12rem;
}
