body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-form {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background: #5cb85c;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    cursor: pointer;
}

button:hover {
    background: #4cae4c;
}

.error {
    color: red;
    text-align: center;
}

.dashboard-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #5cb85c;
    color: #ffffff;
    padding: 10px 20px;
}

.logout {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.dashboard-content {
    display: flex;
    flex: 1;
}

.sidebar {
    width: 200px;
    background: #2c3e50;
    color: #ffffff;
}

.sidebar nav ul {
    list-style-type: none;
    padding: 0;
}

.sidebar nav ul li {
    padding: 15px;
}

.sidebar nav ul li a {
    color: #ffffff;
    text-decoration: none;
    display: block;
}

.sidebar nav ul li:hover {
    background: #34495e;
}

.main-content {
    flex: 1;
    padding: 20px;
}

.metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.metric-card {
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    width: calc(25% - 20px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.metric-card h3 {
    margin: 0 0 10px;
}

.metric-card p {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: center;
}

table th {
    background: #f4f4f4;
}

/* locked Options */
.locked-option {
    color: #999999; /* Grey color for locked options */
    pointer-events: none; /* Disable click events */
    text-decoration: line-through; /* Optional: Strikethrough text */
}

.lock-icon {
    margin-right: 5px; /* Spacing between icon and text */
}

/* support ticket */
/* support_ticket.css */

/* General styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

.dashboard-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

header {
    background-color: #007bff;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
}

.logout {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    background-color: #dc3545;
    border-radius: 5px;
}

.dashboard-content {
    display: flex;
    flex: 1;
}

.sidebar {
    width: 200px;
    background-color: #343a40;
    color: white;
    padding: 20px;
}

.sidebar nav ul {
    list-style: none;
    padding: 0;
}

.sidebar nav ul li {
    margin: 15px 0;
}

.sidebar nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar nav ul li a:hover {
    color: #007bff;
}

.locked-option {
    color: #999999; /* Grey color for locked options */
    pointer-events: none; /* Disable click events */
    text-decoration: line-through; /* Optional: Strikethrough text */
}

.lock-icon {
    margin-right: 5px; /* Spacing between icon and text */
}

.main-content {
    flex: 1;
    padding: 20px;
    background-color: #f8f9fa;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #dee2e6;
}

th, td {
    padding: 15px;
    text-align: left;
}

th {
    background-color: #e9ecef;
}

button {
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}
/* Manage Order  */

/* Add this to your existing style.css */

/* General styles for the orders table */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #dee2e6;
}

th, td {
    padding: 15px;
    text-align: left;
}

th {
    background-color: #e9ecef;
}

button {
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 5px; /* Spacing between buttons */
}

button:hover {
    background-color: #0056b3;
}
