/* assets/css/meta-data-generator.css */

.wrap {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    position: relative;
    text-align: center;
}

.wrap h1.wp-heading-inline {
    display: inline-block;
    margin-right: 5px;
    text-align: center;
    font-weight: 800;
    margin-bottom: 30px;
}


.gsseo-filters {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#gsseo-search {
    max-width: 300px;
}

table.widefat {
    border-collapse: collapse;
    border: none;
    margin-top: 10px;
}

table.widefat thead {
    background: #f8f9fa;
    font-weight: bold;
}

table.widefat th, table.widefat td {
    padding: 12px 15px;
    vertical-align: middle;
    text-align: center;
}

table.widefat th {
    width: 30%; /* Adjusted width for header */
    font-weight: 800;
    border: double;
}

table.widefat td {
    width: 25%; /* Adjusted width for table cells */
    border: double;
}

table.widefat tr:nth-child(even) {
    background-color: #f6f6f6;
}

/* Button Styling */
button.gsseo-save-meta, button.gsseo-generate-ai-meta {
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

button.gsseo-save-meta {
    background-color: #007bff;
    color: white;
}

button.gsseo-save-meta:hover {
    background-color: #0056b3;
}

button.gsseo-generate-ai-meta {
    background-color: #28a745;
    color: white;
}

button.gsseo-generate-ai-meta:hover {
    background-color: #218838;
}

/* Form fields styling */
input.gsseo-title, textarea.gsseo-description {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ced4da;
    box-sizing: border-box;
}

/* Message area */
.gsseo-message {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #28a745; /* Success message color */
}

.alert {
    margin-top: 20px;
}

#gsseo-search {
    max-width: 300px;
}


/*******************************/


.gsseo-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 20px 0;
}

.gsseo-pagination button {
    padding: 5px 10px;
    border: 1px solid #ddd;
    background: #f7f7f7;
    cursor: pointer;
    border-radius: 3px;
}

.gsseo-pagination button:hover {
    background: #e9e9e9;
}

.gsseo-pagination button.active {
    background: #0073aa;
    color: white;
    border-color: #006799;
}

.gsseo-page-dots {
    padding: 5px 10px;
}

.gsseo-pagination-container {
    float: right;
}