/* 全局样式重置 */
.search-section *,.domain-list * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.micontainer {
    max-width: 1190px;
    margin: 0 auto;
    padding: 0;
}



/* 快捷查询区域 */
.quick-search-section {
    background-color: white;
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
    box-shadow: none;
}

.quick-search-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    display: inline-block;
    margin-right: 10px;
}

.quick-search-buttons {
    display: inline-block;
    gap: 10px;
}

.quick-btn {
    display: inline-block;
    padding: 5px 10px;
    background-color: white;
    color: #666;
    text-decoration: none;
    border-radius: 0;
    font-size: 13px;
    transition: color 0.3s;
    border: none;
}

.quick-btn:hover {
    background-color: white;
    color: #4a90e2;
    text-decoration: underline;
}
.quick-btn.curr{
    color: #333;
    text-decoration: underline;

}
/* 搜索筛选区域 */
.search-section {
    background-color: white;
    padding: 15px 20px;
    margin-bottom: 0;
    box-shadow: none;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    overflow: visible;
}

.search-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 200px;
    flex: 1 0 30%;
    overflow: visible;
}

.search-group.domain-attributes {
    flex: 1 0 100%;
    min-width: 100%;
}

.search-label {
    font-size: 13px;
	line-height: 30px;
    font-weight: normal;
    color: #333;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
}

.keyword-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 120px;
}

.keyword-input {
    flex: 1;
    min-width: 150px;
}

.keyword-options {
    display: flex;
    gap: 15px;
    margin-top: 0;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #666;
    cursor: pointer;
    position: relative;
    overflow: visible;
    z-index: 1;
}
.checkbox-option>input {
   margin-top:2px
}	
.jzls-selected-text {
    color: #4a90e2;
    font-size: 12px;
    margin-left: 5px;
}

/* 建站历史弹出层 */
.jzls-popup {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    z-index: 10000;
    margin-top: 5px;
    display: none;
    white-space: nowrap;
}

.jzls-popup-item {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 13px;
    color: #333;
    transition: background-color 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.jzls-popup-item:hover {
    background-color: #f5f5f5;
}

.jzls-popup-item:first-child {
    border-radius: 4px 4px 0 0;
}

.jzls-popup-item:last-child {
    border-radius: 0 0 4px 4px;
}

.jzls-popup-checkmark {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #ddd;
    border-radius: 2px;
    position: relative;
    flex-shrink: 0;
}

.jzls-popup-item.active .jzls-popup-checkmark {
    background-color: #4a90e2;
    border-color: #4a90e2;
}

.jzls-popup-item.active .jzls-popup-checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* 建站历史详细弹出层 */
.jzls-details-popup {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    z-index: 10001;
    margin-top: 5px;
    display: none;
    padding: 15px;
}

.jzls-details-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.jzls-details-row:last-of-type {
    margin-bottom: 15px;
}

.jzls-details-label {
    font-size: 13px;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    min-width: 40px;
}

.jzls-details-input {
    flex: 1;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    height: 32px;
    box-sizing: border-box;
    min-width: 60px;
}

.jzls-details-input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
}

.jzls-details-separator {
    color: #666;
    font-size: 14px;
    white-space: nowrap;
}

.jzls-details-buttons {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.range-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    overflow: visible;
}

.range-select, .range-input {
    width: 100px;
}

.range-separator {
    color: #666;
    font-size: 14px;
}

.search-input, .search-select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    transition: border-color 0.3s;
    flex: 1;
}

/* 域名构成下拉菜单样式 */
.domain-type-select optgroup {
    font-weight: bold;
    font-size: 13px;
}

.domain-type-select option {
    padding-left: 10px;
    font-size: 12px;
}

.search-input:focus, .search-select:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
}

.attribute-checkboxes {
    padding-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    overflow: visible;
}

.search-actions {
    display: flex;
    gap: 10px;
    padding-top: 5px;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: #4a90e2;
    color: white;
}

.btn-primary:hover {
    background-color: #357abd;
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #333;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

/* 排序和统计区域 */
.sort-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.sort-left {
    font-size: 14px;
    color: #666;
}

.sort-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sort-select, .page-size-select {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    background-color: white;
}

/* 错误提示 */
.error-message {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fff3f3;
    color: #d32f2f;
    padding: 12px 16px;
    border-radius: 4px;
    border-left: 4px solid #d32f2f;
    margin-bottom: 20px;
}

.error-icon {
    font-size: 16px;
}

/* 域名列表 */
.domain-list {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
    overflow: hidden;
}

.domain-table {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.data-table th,
.data-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.data-table th {
    background-color: #4a90e2;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.data-table tbody tr:hover {
    background-color: #fafafa;
}

/* 表格列样式 */
.domain-cell {
    min-width: 100px;
}

.length-cell {
    width: 80px;
}

.intro-cell {
    min-width: 300px;
}

.date-cell {
    width: 120px;
}

.price-cell {
    width: 100px;
}

.actions-cell {
    width: 80px;
}

/* 图片样式的域名后缀选择器 */
.suffix-select-image {
    width: 180px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.2s;
    color: #999;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 20px;
    padding-right: 32px;
}

.suffix-select-image:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
}

/* 后缀按钮样式 */
.suffix-buttons-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.suffix-btn-image {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 70px;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.suffix-btn-image:hover {
    border-color: #4a90e2;
    background-color: #f0f7ff;
}

.suffix-btn-image.active {
    background-color: #4a90e2;
    color: white;
    border-color: #4a90e2;
}

/* 分类按钮样式 */
.category-buttons-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 0 0 auto;
    min-width: 0;
    align-items: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    order: 0;
    position: relative;
    z-index: 5;
}

#confirmSuffixBtn {
    order: 2;
    flex-shrink: 0;
}

.category-btn-image {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.category-btn-image:hover {
    border-color: #4a90e2;
    background-color: #f0f7ff;
}

.category-btn-image.active {
    background-color: #4a90e2;
    color: white;
    border-color: #4a90e2;
}

/* 底部行容器 */
.suffix-footer-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

/* 后缀选择器容器 */
.suffix-picker-image {
    position: relative;
    display: flex;
    flex: 1;
}

/* 后缀显示框（替代select） */
.suffix-display-box {
    padding: 0 28px 0 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.3s;
    color: #333;
    align-items: center;
    position: relative;
    flex: 1;
    min-height: 32px;
    line-height: 30px;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	width: 299px;
}

.suffix-display-box::after {
    content: '';
    position: absolute;
    right: 8px;
	top:9px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    pointer-events: none;
}

.suffix-display-box:hover {
    border-color: #4a90e2;
}

.suffix-display-box:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
}

/* 控制行容器 - 分类按钮、输入框和确定按钮在同一行 */
.suffix-controls-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
    position: relative;
    min-height: 32px;
    flex-wrap: nowrap;
    overflow: hidden;
}

/* 已选后缀输入框 */
.suffix-input {
    flex: 1;
    min-width: 200px;
    max-width: 100%;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    box-sizing: border-box;
    height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    z-index: 10;
    color: #333;
    background-color: #fff;
    transition: flex 0.3s ease, margin-left 0.3s ease;
    order: 1;
}

.suffix-input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
    flex: 1 1 auto;
    margin-left: -238px;
    z-index: 20;
    background-color: white;
    max-width: calc(100% + 200px);
}

/* 自定义选择器容器 */
.custom-select-wrapper {
    position: relative;
    display: flex;
    flex: 1;
    min-width: 100px;
    overflow: visible;
}

/* 自定义选择器显示框 */
.custom-select-display {
    padding: 0 28px 0 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.3s;
    color: #333;
    display: flex;
    align-items: center;
    position: relative;
    flex: 1;
    min-height: 32px;
	line-height: 30px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 80px;
}
#expireTimePanel{
    width: 380px;
}

.custom-select-display::after {
    content: '';
    position: absolute;
    right: 8px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    pointer-events: none;
}

.custom-select-display:hover {
    border-color: #4a90e2;
}

.custom-select-display:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
}

/* 自定义选择器面板 */
.custom-select-panel {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99999;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 8px 0;
    border-radius: 4px;
    display: none;
    margin-top: 5px;
    max-height: 300px;
    overflow-y: auto;
}

.custom-select-panel.show {
    display: block;
}

/* 自定义选择器选项 */
.custom-select-option {
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 13px;
    color: #333;
}

.custom-select-option:hover {
    background-color: #f0f7ff;
}

.custom-select-option.active {
    background-color: #4a90e2;
    color: white;
}

/* 自定义选择器分组标签 */
.custom-select-group-label {
    padding: 8px 12px;
    font-weight: bold;
    font-size: 12px;
    color: #666;
    background-color: #f5f5f5;
    cursor: default;
}

.custom-select-group-label:hover {
    background-color: #f5f5f5;
}

/* 确保面板完全显示在所有内容之上 */
.suffix-panel-image {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99999;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 12px;
    border-radius: 4px;
    width: 535px;
    max-width: calc(100vw - 20px);
    display: none;
    margin-top: 5px;
    box-sizing: border-box;
    overflow: hidden;
}

.suffix-panel-image.show {
    display: block;
}

/* 按钮样式 */
.btn {
    padding: 6px 22px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-right: 10px;
}

.btn-primary {
    background-color: #4a90e2;
    color: white;
}

.btn-primary:hover {
    background-color: #357abd;
    color:#fff;
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background-color: #e9e9e9;
}

/* 域名单元格内容 */
.domain-name {
    margin-bottom: 5px;
}

.domain-link {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.domain-link:hover {
    color: #357abd;
    text-decoration: underline;
}

.seo-data {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.seo-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #666;
}

.seo-item em{
    color: #2aa0ea;
    font-style: normal;
    font-weight: 500;
    padding: 0 1px;
}

.seo-icon {
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    color: #666;
    background: none;
    width: auto;
    height: auto;
    border-radius: 0;
    padding: 0;
}

/* 长度徽章 */
.length-badge {
    display: inline-block;
    padding: 4px 8px;
    background-color: #e3f2fd;
    color: #1976d2;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* 价格样式 */
.price-text {
    color: #f44336;
    font-weight: bold;
    font-size: 15px;
}

/* 分页 */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
}

.pagination {
    display: flex;
    gap: 5px;
}

.pagination a, .pagination span {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    transition: all 0.3s;
}

.pagination a:hover {
    background-color: #f5f5f5;
    border-color: #bbb;
}

.pagination .active {
    background-color: #4a90e2;
    color: white;
    border-color: #4a90e2;
}

.pagination .disabled {
    color: #ccc;
    cursor: not-allowed;
}

/* 无结果提示 */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-results-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.no-results h3 {
    margin-bottom: 10px;
    color: #666;
}


/* 响应式设计 */
@media (max-width: 768px) {
    .search-row {
        flex-direction: column;
    }
    
    .search-group {
        width: 100%;
    }
    
    .sort-section {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .data-table {
        font-size: 12px;
    }
    
    .data-table th,
    .data-table td {
        padding: 8px 10px;
    }
    
    .seo-data {
        gap: 5px;
    }
    
    .seo-item {
        font-size: 11px;
    }
    
    .seo-icon {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
}

/* 加载动画 */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #4a90e2;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* 时间按钮网格 */
.time-buttons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

/* 到期时间网格 - 一排四个 */
.time-buttons-grid.expire-time-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* 时间按钮样式 */
.time-btn {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    text-align: center;
}

.time-btn:hover {
    border-color: #4a90e2;
    background-color: #f0f7ff;
}

.time-btn.active {
    background-color: #4a90e2;
    color: white;
    border-color: #4a90e2;
}

/* 时间自定义行 */
.time-custom-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
}

.time-custom-label {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
}

.time-custom-input {
    flex: 1;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    height: 32px;
    box-sizing: border-box;
    width: 110px;
    color: #333;
    background-color: #fff;
}

.time-custom-input::placeholder {
    color: #999;
}

.time-custom-input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
}

.time-custom-separator {
    color: #666;
    font-size: 14px;
}

.time-custom-confirm {
    padding: 6px 12px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    height: 32px;
    white-space: nowrap;
    transition: all 0.2s;
}

.time-custom-confirm:hover {
    background-color: #357abd;
}

.time-custom-confirm:active {
    background-color: #2d5fa3;
}



/* 搜狗PR选中文本 */
.pr-selected-text {
    color: #4a90e2 !important;
    font-size: 12px;
    margin-left: 5px;
}

/* 百度权重选中文本 */
.bdqz-selected-text {
    color: #4a90e2 !important;
    font-size: 12px;
    margin-left: 5px;
}

/* BD反链选中文本 */
.bdfl-selected-text {
    color: #4a90e2 !important;
    font-size: 12px;
    margin-left: 5px;
}

/* 百度收录选中文本 */
.bdsl-selected-text {
    color: #4a90e2 !important;
    font-size: 12px;
    margin-left: 5px;
}

/* 搜狗收录选中文本 */
.sgsl-selected-text {
    color: #4a90e2 !important;
    font-size: 12px;
    margin-left: 5px;
}

/* 搜狗收录选中文本 */
.sgsl-selected-text {
    color: #4a90e2 !important;
    font-size: 12px;
    margin-left: 5px;
}

.sosl360-selected-text {
    color: #4a90e2 !important;
    font-size: 12px;
    margin-left: 5px;
}

/* 网站外链wrapper */
#wzwlWrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    margin-top: 5px;
    z-index: 99999;
}

#wzwlWrapper .custom-select-panel {
    position: static;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 8px 0;
    border-radius: 4px;
    display: block;
    margin: 0;
    max-height: none;
    overflow: visible;
}

#wzwlWrapper .time-buttons-grid {
    padding: 15px;
    border-bottom: 1px solid #eee;
    grid-template-columns: repeat(4, 1fr);
}

#wzwlWrapper .time-custom-row {
    padding: 12px 15px;
}
