body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #111;
    color: white;
}

.app-container {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    background-color: #1c1c1c;
    display: flex;
    flex-direction: column;
}

.app-header {
    padding: 15px;
    text-align: center;
    background-color: #000;
    border-bottom: 1px solid #333;
}

.app-content {
    flex: 1;
    padding: 20px;
}

h2 {
    text-align: center;
}

button {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    border: none;
    border-radius: 6px;
    background-color: #d6a75c;
    color: black;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
}

.job-card {
    background-color: #1e1e1e;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #333;
}

.job-card h3 {
    margin-top: 0;
    color: #d6a75c;
}

select, input, textarea {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 6px;
    border: 1px solid #333;
    font-size: 16px;
}
.status-new {
    color: #ff4d4d;
    font-weight: bold;
}

.status-assigned {
    color: #ffa500;
    font-weight: bold;
}

.status-in_progress {
    color: #4da6ff;
    font-weight: bold;
}

.status-completed {
    color: #4caf50;
    font-weight: bold;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #444;
  transition: .4s;
  border-radius: 30px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background: #28a745;
}

input:checked + .slider:before {
  transform: translateX(30px);
}