/* Main CSS file - Contains root variables and basic layout */

:root {
    --primary-color: #02529c;
    --secondary-color: #90e0ef;
    --accent-color: #00b4d8;
    --light-color: #caf0f8;
    --dark-color: #03045e;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Helvetica, "Helvetica Neue", Arial, "Lucida Grande", sans-serif;
}

body {
    /* background-color: #f5f5f5; */ /* Fallback color */
    background-color: #ffffff; /* CHANGED to white */
    color: #333;
    line-height: 1.6;
    /* REMOVED Background Image Styles */
    /* background-image: url('/assets/images/baksida_1728x.webp'); */
    /* background-size: cover; */
    /* background-position: center center; */
    /* background-repeat: no-repeat; */
    /* background-attachment: fixed; */
    /* min-height: 100vh; */
    /* ADDED to prevent text selection */
    user-select: none; /* Standard */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

#header-logo {
    height: 60px;
    width: auto;
    display: block;
}

.header-text-content {
    flex-grow: 1;
    text-align: center;
}

header .header-title {
    margin-bottom: 5px;
}

h1 {
    margin-bottom: 10px;
}

.hidden {
    display: none;
}

/* Common container styles */
.login-container, 
.order-container, 
.admin-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

/* Basic form elements */
.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input, 
button, 
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

button:hover {
    background-color: var(--primary-color);
}

/* Yellow highlight box for important information */
.info-highlight-box {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 15px 20px;
    margin: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-highlight-box p {
    margin: 0;
    color: #856404;
    font-size: 16px;
    line-height: 1.5;
}

.info-highlight-box strong {
    font-weight: 600;
} 