/* Custom Select Dropdown для типів роликів */
.gvp-custom-select-wrapper {
    position: relative;
    width: 100%;
}

.gvp-custom-select {
    position: relative;
    width: 100%;
}

.gvp-custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0.875rem;
    background-color: #1e293b;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 42px;
}

.gvp-custom-select__trigger:hover {
    border-color: rgba(148, 163, 184, 0.4);
    background-color: #1e293b;
}

.gvp-custom-select--open .gvp-custom-select__trigger {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.gvp-custom-select__value {
    flex: 1;
    color: #e2e8f0;
    font-size: 0.875rem;
}

.gvp-custom-select__arrow {
    width: 16px;
    height: 16px;
    color: #94a3b8;
    transition: transform 0.2s;
}

.gvp-custom-select--open .gvp-custom-select__arrow {
    transform: rotate(180deg);
}

.gvp-custom-select__options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background-color: #1e293b;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    animation: gvpDropdownSlideIn 0.2s ease;
}

.gvp-custom-select--open .gvp-custom-select__options {
    display: block;
}

.gvp-custom-select__option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0.75rem 0.875rem;
    cursor: pointer;
    transition: background-color 0.15s;
    color: #e2e8f0;
    font-size: 0.875rem;
}

.gvp-custom-select__option:hover {
    background-color: rgba(59, 130, 246, 0.1);
}

.gvp-custom-select__option--selected {
    background-color: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.gvp-custom-select__option span {
    flex: 1;
}

.gvp-custom-select__option-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.25rem;
}

.gvp-custom-select__option-label {
    font-size: 0.875rem;
    color: inherit;
    line-height: 1.4;
}

.gvp-custom-select__option-description {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.3;
    margin-top: 0.125rem;
}

.gvp-custom-select__info-icon {
    width: 16px;
    height: 16px;
    color: #60a5fa;
    cursor: help;
    margin-left: 0.5rem;
    position: relative;
    flex-shrink: 0;
}

.gvp-custom-select__info-icon:hover {
    color: #3b82f6;
}

.gvp-custom-select__tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #0f172a;
    color: #e2e8f0;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    white-space: nowrap;
    max-width: 250px;
    white-space: normal;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(148, 163, 184, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 1001;
    line-height: 1.4;
}

.gvp-custom-select__info-icon:hover .gvp-custom-select__tooltip {
    opacity: 1;
    pointer-events: auto;
}

.gvp-custom-select__tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #0f172a;
}

@keyframes gvpDropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

