
.bb-modal-select-container {
    position: relative;
    width: 100%;
}

.bb-select-trigger {
    width: 100%;
    padding: 8px 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    position: relative;
}

.bb-select-trigger:after {
    content: '▼';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #666;
}

.bb-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.bb-modal-content {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px 12px 0 0;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    z-index: 1001;
}

.bb-modal-content.open {
    transform: translateY(0);
}

.bb-modal-header {
    position: sticky;
    top: 0;
    background: white;
    padding: 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bb-modal-title {
    font-size: 18px;
    font-weight: 600;
}

.bb-close-button {
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 4px 8px;
}

.bb-option-item {
    padding: 16px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.bb-option-item:hover {
    background-color: #f5f5f5;
}

.bb-option-item.selected {
    background-color: #f0f7ff;
    color: #0066cc;
}

body.bb-modal-open {
    overflow: hidden;
}