/* Modernized UI styles for plugin */

/* Reset and base styles */
.wrap {
    font-family: -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    max-width: 1200px;
    margin-left: 0; /* Align to left */
    padding-left: 20px; /* Small left padding for spacing */
}

/* Card styles for sections */
.cqctphp-card {
    background: #ffffff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
}

/* Header with icon */
.cqctphp-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px!important;
}
.cqctphp-header .dashicons {
    font-size: 24px;
    color: #0073aa;
}

/* Info blocks */
.cqctphp-info-block {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.cqctphp-info-block .cqctphp-info-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid #0073aa;
}

/* Form table styles */
.form-table {
    background: #ffffff;
    border-radius: 4px;
    padding: 20px;
    padding-left: 30px; /* Left indent for settings block */
    margin-bottom: 20px;
}
.form-table th {
    font-weight: 600;
    color: #23282d;
    padding-left: 15px;
}
.form-table td {
    padding: 15px 10px;
}

/* Button styles */
.button-primary, .button.action {
    border-radius: 3px;
    transition: background 0.2s ease;
}
.button-primary:hover, .button.action:hover {
    background: #005e8c;
}

/* Log table styles */
.wp-list-table {
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.wp-list-table th {
    background: #f8f9fa;
    font-weight: 600;
}

/* Status badge */
.numcirc {
    background: #d63638;
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}
.greennumcirc {
    background: #46b450;
}

/* Icon for actions */
.cqctphp-action-button .dashicons {
    vertical-align: middle;
    margin-right: 5px;
}

/* Style for informational paragraphs */
.cqctphp-info {
    position: relative;
    font-size: 13px;
    line-height: 1.6;
    color: #333;
    background: #e8f0fe; /* Light blue info background */
    border: 1px solid #b3cffa; /* Soft blue border */
    border-radius: 4px;
    padding: 15px 20px 15px 45px; /* Extra left padding for icon */
    margin: 10px 0;
}
/* Add info icon using Dashicons */
.cqctphp-info::before {
    content: "\f348"; /* Dashicons info icon */
    font-family: "Dashicons";
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 20px;
    color: #2563eb; /* Blue icon color */
}