.search3d-container {
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0;
    padding: 20px 0;
}

.search3d-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.search3d-form {
    margin-bottom: 30px;
}

.search3d-input-group {
    display: flex;
    width: 100%;
}

.search3d-input {
    flex: 1;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}

.search3d-button {
    padding: 10px 20px;
    background-color: #f7b516;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.search3d-button:hover {
    background-color: #e6a714;
}

.search3d-results {
    margin-top: 20px;
    display: block !important;
    min-height: 50px;
    border: 1px solid #ddd;
    padding: 10px;
    background-color: #fff;
}

.search3d-no-results {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.search3d-error {
    padding: 20px;
    background-color: #fff0f0;
    border: 1px solid #ffcccc;
    border-radius: 4px;
    text-align: center;
    color: #cc0000;
}

.search3d-error-details {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    font-family: monospace;
    background-color: #f8f8f8;
    padding: 8px;
    border-radius: 4px;
    text-align: left;
    overflow-wrap: break-word;
}

.search3d-results-count {
    margin-bottom: 15px;
    font-size: 16px;
    color: #666;
}

.search3d-results-table-wrapper {
    overflow-x: auto;
}

.search3d-results-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

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

.search3d-results-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.search3d-results-table tbody tr {
    transition: background-color 0.3s;
    cursor: pointer;
}

.search3d-results-table tbody tr:hover {
    background-color: #f5f5f5;
}

.search3d-load-more {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #f7b516;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.search3d-load-more:hover {
    background-color: #e6a714;
}

@media (max-width: 768px) {
    .search3d-input-group {
        flex-direction: column;
    }
    
    .search3d-input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .search3d-button {
        border-radius: 4px;
        width: 100%;
    }
    
    .search3d-results-table th,
    .search3d-results-table td {
        padding: 8px 10px;
        font-size: 14px;
    }
}
