/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */
.progress-bar {
    width: 100%;
    background-color: #ddd;
}
.progress-bar-value {
    width: 0;
    background-color: #2271b1;
    height: 30px;
    margin-top: 15px;
}
.loader {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    margin: auto;
}
.inprogress-message {
    width: 200px;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
#sos-exclude-table {
    margin-top: 10px;
    padding: 5px;
}
.dataTables_wrapper .dataTables_length select {
    padding: 5px 12px !important;
    margin: 5px !important;
}
.wp-core-ui select {
    background: #fff url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat right 0px top 55%!important;
}
input.button.button-primary.disabled{
    color:#000000!important;
}
#loader {
    background-color: rgba(255, 255, 255, 0.8); /* Optional: to dim the background */
    padding: 10px;
    font-size: 16px;
    text-align: center;
}
.sos-form-field-wrap {
    display: flex;
    align-items: center;
}
.sos-tooltip-icon {
    background: #666;
    height: 13px;
    width: 13px;
    border-radius: 50%;
    color: white;
    font-size: 11px;
    text-align: center;
    z-index: 1;
    margin: 5px;
}
.sos-tooltip-icon:hover {
    background: black;
}
/* Basic button styling */
#sos_syncbutton {
    position: relative;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    overflow: hidden;
    width: 200px;
    border-radius: 30px;
}
#sos_syncbutton:hover {
    background-color: #005a9e;
}
/* Loader styling */
.loader {
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 2px solid transparent;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 40%;
    left: 25px;
    transform: translateY(-50%);
    animation: none;
    visibility: hidden; /* Hidden by default */
}
/* Show loader and rotate on hover */
#sos_syncbutton:hover .loader {
    visibility: visible;
    animation: spin 0.6s linear infinite;
}
/* Loader spin animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.sync-button {
    padding: 20px; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20%;
    margin-top: 0px;
    background-color: #ffffff; 
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); 
}
.spsos_no_data {
    padding: 5px;
    border-left: 4px solid #0073aa; /* Matches the info color */
    background-color: #f1f1f1;
    margin-top: 15px;
}

