body {
    background-color: #f0f2f5;
}

.task-form-wrapper {
    background-color: #c8c8c8;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.task-form-wrapper h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
}

.form-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #495057;
}

.form-label {
    font-weight: 500;
    color: #555;
}

.form-control,
.form-select {
    border-radius: 6px;
    border: 1px solid #ced4da;
}

.form-control:disabled {
    background-color: #e9ecef;
}



.tag {
    padding: 0.4em 0.6em;
    background-color: #6c757d;
    color: #fff;
    border-radius: 0.4em;
}

.tag button {
    background: none;
    border: none;
    color: #fff;
    font-size: 1em;
    margin-left: 0.5em;
    cursor: pointer;
}


.highlight {
  background-color: #ffffcc;
  transition: background-color 0.5s ease;
}

.table td {
  word-break: break-word;
  white-space: normal;
}

.task-form-wrapper form input[type="file"] {
    min-width: 200px;
}

.small-text {
    font-size: 0.8rem; /* або 12px, або 80% — як зручно */
}

.action-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.action-group .action-label {
    margin-bottom: 0;
    min-width: 160px;
}

.action-group .action-control {
    min-width: 160px;
    max-width: 220px;
    flex: 1;
}

.action-group .action-button {
    min-width: 160px;
    flex: 1;
}


.fixed-col {
    width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nowrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}