#osocial-search-form {
    display: flex;
    gap: 10px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
    align-items: center;
    margin-top: 5%;
}

#osocial-search-form input,
#osocial-search-form button {
    flex: 1;
    border: 0px;
    border-radius: 4px;
    font-size: 16px;
    background-color: #f1f1f1;
    color: #333;
    max-width: 30%;
}

#osocial-search-form input::placeholder {
    color: #999;
}

#osocial-search-form button {
    background-color: #048080;
    color: white;
    border: none;
    cursor: pointer;
    flex: 0 0 auto;
    text-transform: none;
    font-weight: normal;
}

#osocial-search-form button:hover {
    background-color: #0056b3;
}

#os-clear-button {
    display: inline-flex !important;
    align-items: center !important;
    background: none !important;
    border: none !important;
    color: #048080 !important;
    cursor: pointer !important;
    font-size: 16px !important;
    font-weight: normal !important;
    padding: 0 !important;
    margin-left: 10px;
}

#os-clear-button img {
    margin-right: 5px;
    height: 20px;
    width: 20px;
}

#os-search-results table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

#os-search-results th, #os-search-results td {
    border: none;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

#os-search-results th {
    background-color: #f2f2f2;
    font-weight: bold;
    color: #048080;
    border-bottom: 2px solid #ddd;
}

#os-search-results tr:nth-child(even) {
    background-color: #f9f9f9;
}

#os-search-results tr:hover {
    background-color: #f1f1f1;
}

#os-search-results {
    margin-bottom: 5%;
}

#os-pagination {
    margin-top: 20px;
    text-align: center;
}

#os-pagination .pagination-button {
    margin: 2px;
}

#os-pagination .pagination-button:hover {
    background-color: #658a8a !important;
}

#os-pagination .pagination-button.active {
    background-color: #048080 !important;
    color: white !important;
    cursor: default;
}
