/* Our Clients Settings Styles */
.our-clients-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wp-list-table {
    margin-top: 20px;
    border-radius: 8px;
    table-layout: auto;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.wp-list-table th,
.wp-list-table td {
    vertical-align: middle !important;
    padding: 15px !important;
    transition: background 0.3s ease;
}

.wp-list-table th {
    background-color: #f1f1f1;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #ddd;
}

.wp-list-table td {
    border-bottom: 1px solid #eee;
}

.wp-list-table tr:hover td {
    background: #f9f9f9;
}

.image-upload-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.image-preview {
    margin-top: 10px;
    max-height: 100px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.regular-text {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    transition: border-color 0.3s ease;
}

.regular-text:focus {
    border-color: #61CE70;
    outline: none;
}

.upload-image-button {
    background: #2271b1 !important;
    border-color: #2271b1 !important;
    color: #fff !important;
    border-radius: 4px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.3s ease;
}

.upload-image-button:hover {
    background: #135e96 !important;
    border-color: #135e96 !important;
}

.button-danger {
    background: #d63638 !important;
    border-color: #d63638 !important;
    color: #fff !important;
    border-radius: 4px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.3s ease;
}

.button-danger:hover {
    background: #c32f31 !important;
    border-color: #c32f31 !important;
}

.add-client {
    margin: 20px 0;
    border-radius: 4px;
    background: #61CE70 !important;
    border-color: #61CE70 !important;
    color: #fff !important;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.3s ease;
}

.add-client:hover {
    background: #55b562 !important;
    border-color: #55b562 !important;
}

.add-client:disabled {
    background: #ccc !important;
    border-color: #ccc !important;
    cursor: not-allowed;
}

.button-save {
    background: #2271b1 !important;
    border-color: #2271b1 !important;
    color: #fff !important;
    border-radius: 4px;
    padding: 10px 15px;
    transition: background 0.3s ease;
}

.button-save:hover {
    background: #135e96 !important;
    border-color: #135e96 !important;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .wp-list-table th,
    .wp-list-table td {
        padding: 10px !important;
    }

    .image-preview {
        max-width: 80px;
    }
}