body {
    font-family: 'Segoe UI', sans-serif;
    background: #f2f3f7;
    color: #333;
    padding: 20px;
}

.container {
    max-width: 700px;
    margin: auto;
    background: white;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #444;
    margin-bottom: 20px;
}

.add-user {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.user {
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: #fafafa;
}

.user-name {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    color: #222;
}

.user-name span {
    color: #28a745;
}

.job-list {
    margin-top: 8px;
    padding-left: 12px;
    border-left: 3px solid #ccc;
    display: none;
}

button {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    background: #0056b3;
}

button.small {
    background: #6c757d;
    font-size: 13px;
    padding: 4px 8px;
}

button.small.danger {
    background: #dc3545;
}

input {
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    flex: 1;
}