/* Vendor Dashboard Styling */
.anydress-dashboard-wrapper {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.anydress-dashboard-header h1 { margin-bottom: 5px; color: #1d2327; }
.anydress-dashboard-header p { color: #646970; margin-bottom: 25px; }

.anydress-importer-box {
    display: flex;
    gap: 10px;
    background: #f0f6fb;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.anydress-importer-box input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #c3c4c7;
    border-radius: 6px;
}

.anydress-garment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.anydress-garment-card {
    border: 1px solid #dcdcde;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.anydress-garment-card:hover { transform: translateY(-5px); }

.anydress-garment-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.anydress-garment-info { padding: 12px; border-top: 1px solid #eee; }

.status-badge {
    display: inline-block;
    font-size: 11px;
    background: #dcfce7;
    color: #166534;
    padding: 2px 8px;
    border-radius: 10px;
    margin-top: 5px;
}

#anydress-import-feedback { margin-top: 10px; font-weight: bold; font-size: 14px; }

.anydress-dashboard-tabs { border-bottom: 2px solid #eee; margin-bottom: 25px; }
.anydress-tab-link { background: none; border: none; padding: 10px 20px; cursor: pointer; font-size: 16px; color: #666; }
.anydress-tab-link.active { color: #2271b1; border-bottom: 2px solid #2271b1; font-weight: bold; }
.anydress-form-group { margin-bottom: 20px; text-align: left; }
.anydress-form-group label { display: block; font-weight: bold; margin-bottom: 8px; }
.preview-box { margin-top: 10px; border: 1px dashed #ccc; padding: 5px; display: inline-block; }

.anydress-sub-card { background: #fcfcfc; border: 1px solid #eee; padding: 25px; border-radius: 12px; text-align: left; }
.sub-row { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 16px; }
.anydress-progress-bg { background: #eee; height: 12px; border-radius: 6px; overflow: hidden; margin: 20px 0; }
.anydress-progress-bar { background: #2271b1; height: 100%; border-radius: 6px; }
.anydress-notice-box { background: #fff8e5; border-left: 4px solid #ffb900; padding: 15px; }