/**
 * Admin styles for Velocity Wishlist
 *
 * @since      1.0.0
 * @package    Velocity_Wishlist
 * @subpackage Velocity_Wishlist/admin/css
 */

/* Overview Page Styles */
.vwish-admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
}

.vwish-admin-header-content h2 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.vwish-admin-header-content p {
    margin: 0;
    color: #666;
}

.vwish-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.vwish-stat-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.vwish-stat-icon {
    width: 50px;
    height: 50px;
    background: #0073aa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vwish-stat-icon .dashicons {
    color: #fff;
    font-size: 24px;
}

.vwish-stat-content h3 {
    margin: 0 0 5px 0;
    font-size: 24px;
    font-weight: 600;
}

.vwish-stat-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.vwish-section {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

.vwish-section h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
}

.vwish-count-badge {
    background: #0073aa;
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.vwish-public-badge {
    background: #00a32a;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    margin-left: 8px;
}

.vwish-status-user {
    color: #00a32a;
    font-weight: 600;
}

.vwish-status-guest {
    color: #dba617;
    font-weight: 600;
}

.vwish-maintenance {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.vwish-maintenance p {
    flex: 1 1 100%;
    margin-bottom: 10px;
}
/
* Settings Page Styles */
.vwish-admin-header-actions {
    display: flex;
    gap: 10px;
}

.tab-content {
    display: none;
    background: #fff;
    padding: 20px;
    border: 1px solid #ccd0d4;
    border-top: none;
}

.tab-content.active {
    display: block;
}

.nav-tab-wrapper {
    margin-bottom: 0;
}/
* Setup Wizard Styles */
.vwish-wizard {
    max-width: 800px;
}

.vwish-wizard-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px;
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
}

.vwish-wizard-header h2 {
    margin-top: 0;
    color: #0073aa;
}

.vwish-wizard-step {
    display: none;
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 20px;
}

.vwish-wizard-step.active {
    display: block;
}

.vwish-wizard-step-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.vwish-wizard-step-header h3 {
    margin-top: 0;
    color: #0073aa;
}

.vwish-wizard-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.vwish-wizard-progress {
    text-align: center;
}

.vwish-wizard-progress-bar {
    width: 100%;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}

.vwish-wizard-progress-fill {
    height: 100%;
    background: #0073aa;
    transition: width 0.3s ease;
}

.vwish-style-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.vwish-style-options label {
    cursor: pointer;
}

.vwish-style-preview {
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.vwish-style-options input:checked + .vwish-style-preview {
    border-color: #0073aa;
    background: #f0f8ff;
}

.vwish-color-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.vwish-color-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.vwish-color-preview {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ddd;
}

.vwish-color-preview.theme-1 { background: #e74c3c; }
.vwish-color-preview.theme-2 { background: #3498db; }
.vwish-color-preview.theme-3 { background: #2ecc71; }

.vwish-color-options input:checked + .vwish-color-preview {
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.3);
}/* C
ustom Icon Field Styles */
#custom_icon_field {
    margin-top: 10px;
}

#custom_icon_field.hidden {
    display: none;
}

#remove_custom_icon {
    margin-left: 5px;
}

#remove_custom_icon.hidden {
    display: none;
}

#custom_icon_preview {
    margin-top: 10px;
}

#custom_icon_preview.hidden {
    display: none;
}

#custom_icon_preview img {
    max-width: 50px;
    max-height: 50px;
}

/* Setup Wizard Navigation States */
#prev-step.hidden,
#finish-setup.hidden {
    display: none;
}

/* ==========================================================================
   Migration Page Styles
   ========================================================================== */

.awdev-migration-status .form-table th {
    width: 200px;
}

.awdev-migration-actions,
.awdev-cleanup-actions,
.awdev-migration-help {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
}

.awdev-migration-actions h3,
.awdev-cleanup-actions h3,
.awdev-migration-help h3 {
    margin-top: 0;
}

.awdev-migration-help ul {
    margin-left: 20px;
}

.awdev-migration-help li {
    margin-bottom: 5px;
}