
.category-selector {
    display: flex;
    flex-direction: row; 
    align-items: center; 
    gap: 12px; 
    width: 100%; 
    max-width: 900px; 
    margin: auto; 
}

/* Combobox stilleri */
.hizmet, .althizmet {
    width: 100px !important; 
    height: 48px;
    padding: 0 12px;
    font-size: 16px;
    color: #000;
    background-color: #FFFFFF;
    border: 1px solid #E6E8EC;
    border-radius: 12px;
    appearance: none;
    outline: none;
    cursor: pointer;
}

.hizmet:hover, .althizmet:hover {
    border-color: #CCCCCC;
}

.hizmet:focus, .althizmet:focus {
    border-color: #999999;
}

/* Button stilleri */
.btn-fiyat-hesapla {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 0 32px;
    min-height: 48px;
    width: inherit !important;
    border-radius: 12px;
    background: #F26622;
    color: #FFFFFF;
    font-family: Lexend, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-fiyat-hesapla:hover {
    background: #E55920; 
}



