/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
   
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Table Styles */
table {
    border-collapse: collapse;
    width: 100%;
    table-layout: auto;
}

th, td {
    border: 1px solid #ddd;
    padding: 5px;  /* Increased padding for better readability */
    text-align: left;
}

th {
    background: #0056b3;
        color: #ffffff;
}

td[contenteditable] {
    background: #eef;
    color: green;
}

button {
    margin: 5px;
    padding: 5px 10px;
}

a {
    color: blue;
    text-decoration: underline;
}

select {
    width: 100px;
    padding: 2px;
}

.complete {
    background-color: transparent;
    color: green;
}

.processing {
    background-color: red !important;
    color: white;
}

.important {
    background-color: blue !important;
    color: white;
}

.review {
    background-color: yellow !important;
    color: black;
}

/* Specific columns to adjust to max-content */
td:nth-child(1), th:nth-child(1),
td:nth-child(2), th:nth-child(2),
td:nth-child(3), th:nth-child(3) {
    width: 14% !important;
}

/* Hover effect for table rows */
tbody tr:hover {
    background-color: yellow;
    cursor: pointer;
}

/* Row color change based on status */
.processing {
    background-color: red !important;
    color: white;
}

.important {
    background-color: blue !important;
    color: white;
}

.review {
    background-color: yellow !important;
    color: black;
}

.processing a, .important a {
    color: #ffffff;
    text-decoration: underline;
}

.processing td[contenteditable], .important td[contenteditable], .review td[contenteditable] {
    background: #bbbbbb;
    color: green;
}

/* Login Form Styles */
h2 {
    color: #333;
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

/* Form Styling */
form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Input Fields */
input[type="text"], input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

/* Focus Effect */
input[type="text"]:focus, input[type="password"]:focus {
    border-color: #0056b3;
    outline: none;
}

/* Submit Button */
button {
   
    padding: 12px;
    background-color: #0056b3;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover Effect */
button:hover {
    background-color: #003d82;
}

/* Error Message Styling */
p {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
    color: red;
}
