/* ---------- Статусы заявок ---------- */
.crm-status {
    padding: 2px 6px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    font-size: 0.9em;
}

.crm-status.new {
    background-color: #3498db; /* синий */
}

.crm-status.in-progress {
    background-color: #f39c12; /* оранжевый */
}

.crm-status.completed {
    background-color: #2ecc71; /* зеленый */
}

.crm-status.rejected {
    background-color: #e74c3c; /* красный */
}

/* ---------- Список заявок ---------- */
/* Заявки */
.admin-project-item {
    margin-bottom: 15px;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

/* Подсветка при наведении */
.admin-project-item:hover {
    background-color: rgba(255, 255, 255, 0.06);
}