/* Базовые стили ЛК */
:root {
    --primary-color: #1fc2f0;
    --secondary-color: #ffc107;
}

body {
    background-color: #f8f9fa;
}

.navbar {
    background-color: var(--primary-color) !important;
}

.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #1aa8d0;
    border-color: #1aa8d0;
}

.status-badge {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85em;
}

.status-new { background-color: #17a2b8; color: white; }
.status-in_progress { background-color: #007bff; color: white; }
.status-measurement { background-color: #ffc107; color: black; }
.status-production { background-color: #fd7e14; color: white; }
.status-installation { background-color: #28a745; color: white; }
.status-completed { background-color: #6c757d; color: white; }
.status-cancelled { background-color: #dc3545; color: white; }

.star-rating {
    color: #ffc107;
    font-size: 1.5em;
}

.chat-message {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.chat-message.own {
    background-color: #e7f3ff;
    margin-left: 20%;
}

