/*BUTTONS*/

/*StandartButton*/
button {
    background-color: #597fa8;
    color: white;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: left;
}

button:hover {
    background-color: #0056b3;
    border-color: #004a99;
}

button:disabled {
    background-color: #cccccc;
    border-color: #aaaaaa;
    cursor: not-allowed;
    color: #666666;
}

/*ListenButton*/

.btn-list {
    background-color: #aab1b8;
    color: rgb(0, 0, 0);
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    width: 100%;
    padding: 10px;
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
}

.btn-list:hover {
    background-color: #979ca1;
    border-color: #979ca1;
}

.btn-list:disabled {
    background-color: #cccccc;
    border-color: #aaaaaa;
    cursor: not-allowed;
    color: #666666;
}


/*COMBOBOX*/


select {
    appearance: none;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

select:focus {
    border-color: #007bff;
    box-shadow: 0 0 3px rgba(0, 123, 255, 0.4);
    outline: none;
}

select:disabled {
    background-color: #f2f2f2;
    color: #999;
    cursor: not-allowed;
}

select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='gray' d='M2 0L0 2h4L2 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 8px 10px;
}
