/**
 * Claim Form Styles - VastoInsider
 * Shared styles for business claim pages
 */

/* Verified Owner Badge */
.verified-owner-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
}

.verified-owner-badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Claim CTA Button on Listings */
.claim-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.claim-cta-button:hover {
    background: #fff;
    border-color: #C62828;
    color: #C62828;
}

.claim-cta-button svg {
    width: 16px;
    height: 16px;
}

/* Toast Notifications */
.vasto-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1a1a2e;
    color: white;
    padding: 16px 24px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.vasto-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.vasto-toast.success {
    background: #2E7D32;
}

.vasto-toast.error {
    background: #C62828;
}

/* Loading Spinner */
.vasto-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: vasto-spin 0.8s linear infinite;
}

@keyframes vasto-spin {
    to { transform: rotate(360deg); }
}

/* Form Validation States */
.form-group.has-error input,
.form-group.has-error select {
    border-color: #C62828;
    background: #fff5f5;
}

.form-group .error-message {
    color: #C62828;
    font-size: 0.85rem;
    margin-top: 5px;
}

.form-group.has-success input,
.form-group.has-success select {
    border-color: #2E7D32;
}

/* Claim Status Badges */
.claim-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.claim-status.pending {
    background: #fff3cd;
    color: #856404;
}

.claim-status.verified {
    background: #d1ecf1;
    color: #0c5460;
}

.claim-status.approved {
    background: #d4edda;
    color: #155724;
}

.claim-status.rejected {
    background: #f8d7da;
    color: #721c24;
}
