body {
    font-family: Arial, sans-serif;
    margin: 0 auto;
    max-width: 50%;
    background-color: beige;
}

h1, h2 {
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 8px;
    text-align: left;
}

button {
    padding: 5px 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

orm {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

form label {
    font-weight: bold;
}

form input, form select, form button {
    padding: 8px;
    font-size: 16px;
}

form button {
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #218838;
}
button.delete {
    background-color: #dc3545;
}

button.delete:hover {
    background-color: #c82333;
}
#assignModal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    z-index: 1000;
}

#assignModal h3 {
    margin-top: 0;
}

#assignModal select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
}

#assignModal button {
    margin-right: 10px;
    padding: 8px 15px;
    cursor: pointer;
}
.work_Designer{
    color: red;
}
.prio_High{
    color: #981d1d;
}
.prio_Medium{
    color: #98711d;
}
.prio_Low{
    color: #1d8998;
}