/**
 * Rocketship SEO Redirects Admin Styles
 *
 * @since      1.0.0
 * @package    Rocketship_SEO
 */

/* WordPress Footer Fix */
#wpfooter {
    position: fixed !important;
    z-index: -999;
}

/* Bot Selector Styles */
.rocketship-bot-selector-wrapper {
    max-width: 100%;
}

.rocketship-bot-selector {
    width: 100% !important;
}

/* Select2 Custom Styling for Bot Selector */
.select2-container--default .select2-selection--multiple {
    border: 1px solid #8c8f94;
    border-radius: 4px;
    min-height: 40px;
    padding: 2px 4px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #0073aa;
    border: 1px solid #0073aa;
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    margin: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff;
    margin-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #ff6b6b;
}

/* Bot emoji styling in tags */
.bot-emoji {
    font-size: 14px;
    margin-right: 4px;
}

/* Quick selection buttons */
.rocketship-quick-select {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.rocketship-quick-select .button {
    font-size: 12px;
    padding: 4px 8px;
    height: auto;
    line-height: 1.2;
}

/* Select2 dropdown styling */
.select2-container--default .select2-results__option {
    padding: 8px 12px;
    font-size: 13px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #0073aa;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .rocketship-quick-select {
        flex-direction: column;
    }
    
    .rocketship-quick-select .button {
        width: 100%;
        text-align: center;
    }
}

/* Additional styles for redirect management - main styles are in the PHP template */

.rocketship-redirects-dashboard .button-small {
    padding: 4px 8px;
    font-size: 12px;
    line-height: 1.2;
    height: auto;
}

.rocketship-redirects-dashboard .wp-list-table .column-actions {
    width: 120px;
}

.rocketship-redirects-dashboard .redirect-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.rocketship-redirects-dashboard .stat-card {
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    padding: 15px;
    text-align: center;
}

.rocketship-redirects-dashboard .stat-number {
    font-size: 24px;
    font-weight: 600;
    color: #0073aa;
    display: block;
}

.rocketship-redirects-dashboard .stat-label {
    font-size: 13px;
    color: #646970;
    margin-top: 5px;
}

/* Form validation styles */
.rocketship-redirects-dashboard .form-field-error {
    border-color: #dc3232;
}

.rocketship-redirects-dashboard .field-error-message {
    color: #dc3232;
    font-size: 12px;
    margin-top: 5px;
}
