#scsp-search-form {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}

#scsp-search-form .scsp-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.scsp-field {
    flex: 1 1 220px;
}

.scsp-field label {
    display: block;
    font-weight: 500;
    color: #333;
}

.scsp-field input[type="text"] {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 5px;
}

.scsp-submit {
    flex: 0 0 auto;
}

#scsp-search-form button {
    height: 42px;
    padding: 0 20px !important ;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#scsp-search-form button:hover {
    background: #005177;
}

#scsp-results {
    margin-top: 30px;
    overflow-x: auto;
    padding: 10px;
}

.scsp-results-table {
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    min-width: 700px;
}

.scsp-results-table thead th {
    background-color: #f9fafb;
    padding: 14px 18px;
    color: #111;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e5e7eb;
}

.scsp-results-table tbody tr {
    transition: background-color 0.25s ease;
}

.scsp-results-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.scsp-results-table tbody tr:hover {
    background-color: #f0f4ff;
}

.scsp-results-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #eee;
    color: #333;
}

@media (max-width: 768px) {
    .scsp-results-table {
        font-size: 14px;
        min-width: 600px;
    }
}
