/* Общие стили для управления наличными */
.cash-management {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.cash-title {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.cash-balance {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.cash-messages {
    list-style: none;
    padding: 0;
    color: #d9534f;
    font-weight: bold;
    text-align: center;
}

.cash-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Обертка для поля ввода */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Стиль для заголовка поля ввода */
.input-label {
    font-size: 16px;
    color: #333;
}

/* Стили для полей ввода */
.cash-form input[type="text"],
.cash-form input[type="number"],
.cash-form select {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

.cash-form input[type="text"]:focus,
.cash-form input[type="number"]:focus,
.cash-form select:focus {
    border-color: #5cb85c;
    outline: none;
}

.cash-form input[required],
.cash-form select[required] {
    border-color: #d9534f;
}

.cash-form input[type="text"]:invalid,
.cash-form input[type="number"]:invalid,
.cash-form select:invalid {
    border-color: #d9534f;
}

/* Стили для кнопок */
.cash-button {
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.add-cash {
    background-color: #5cb85c;
    color: white;
}

.withdraw-cash {
    background-color: #d9534f;
    color: white;
}

.cash-button:hover {
    opacity: 0.9;
}
