/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Dashboard layout */
.dashboard {
    display: flex;
    height: 100vh;
}

/* Sidebar styles */
.sidebar {
    width: 250px;
    background-color: #38ABC7;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.sidebar .logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.sidebar .menu {
    list-style: none;
    padding: 0;
    width: 100%;
}

.sidebar .menu li {
    margin: 15px 0;
    text-align: left;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.sidebar .menu li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: block;
}

.sidebar .menu li.active,
.sidebar .menu li:hover {
    background-color: #2e92ac;
}

.sidebar .queue-stats {
    margin-top: auto;
    text-align: left;
    width: 100%;
    font-size: 14px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.sidebar .queue-stats div {
    margin: 5px 0;
}

/* Main content styles */
.main-content {
    flex-grow: 1;
    padding: 20px;
    background-color: white;
    overflow-y: auto;
}

.main-content h1 {
    font-family: 'Freeman', serif;
    color: #333;
}

.filter-options {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.print-jobs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.job {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f3f3f3;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.job img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 20px;
}

.job-actions button {
    background-color: #38ABC7;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.job-actions button:hover {
    background-color: #2e92ac;
}

.action-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.action-buttons button {
    background-color: #38ABC7;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.action-buttons button:hover {
    background-color: #2e92ac;
}

/* Login Page Styles */
.login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f9f9f9;
}

.login-form {
    background-color: white;
    padding: 20px 40px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-form img {
    width: 120px;
    margin-bottom: 20px;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.login-form a {
    color: #38ABC7;
    text-decoration: none;
    font-size: 14px;
}

.login-form a:hover {
    text-decoration: underline;
}

.login-form button {
    background-color: #38ABC7;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.login-form button:hover {
    background-color: #2e92ac;
}
