/* Wizard Specific Styles */
:root {
    --primary-color: #4a148c;
    --secondary-color: #7b1fa2;
    --accent-color: #9c27b0;
}

.wizard-section {
    padding: 80px 0;
    background: rgba(74, 20, 140, 0.1);
    backdrop-filter: blur(10px);
}

.wizard-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Step Indicators */
.step-indicators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.step-indicators::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step-indicator.active .step-number {
    background: var(--primary-color, #4a148c);
    color: white;
    transform: scale(1.1);
}

.step-title {
    font-size: 12px;
    color: #666;
    text-align: center;
    transition: all 0.3s ease;
}

.step-indicator.active .step-title {
    color: var(--primary-color, #4a148c);
    font-weight: bold;
}

/* Step Content */
.step-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-content h3 {
    color: var(--primary-color, #4a148c);
    margin-bottom: 30px;
    text-align: center;
    font-size: 24px;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color, #4a148c);
    box-shadow: 0 0 0 3px rgba(74, 20, 140, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Model Cards */
.model-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.model-card {
    position: relative;
}

.model-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.model-label {
    display: block;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.model-label:hover {
    border-color: var(--secondary-color, #7b1fa2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.model-card input[type="radio"]:checked + .model-label {
    border-color: var(--primary-color, #4a148c);
    background: rgba(74, 20, 140, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 20, 140, 0.2);
}

.model-label h4 {
    color: var(--primary-color, #4a148c);
    margin-bottom: 10px;
    font-size: 18px;
}

.model-label p {
    color: #666;
    margin-bottom: 15px;
}

.model-label ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.model-label ul li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.model-label ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color, #7b1fa2);
    font-weight: bold;
}

/* Pricing Options */
.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-card {
    padding: 30px;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: var(--primary-color, #4a148c);
    background: rgba(74, 20, 140, 0.05);
}

.pricing-card.featured::before {
    content: 'POPOLARE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color, #4a148c);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.pricing-card h4 {
    color: var(--primary-color, #4a148c);
    margin-bottom: 15px;
    font-size: 20px;
}

.price {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color, #4a148c);
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.pricing-card ul li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

/* Wizard Buttons */
.wizard-buttons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.wizard-buttons .btn {
    flex: 1;
    max-width: 200px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color, #4a148c);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color, #7b1fa2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 20, 140, 0.3);
}

.btn-secondary {
    background: #f0f0f0;
    color: #666;
}

.btn-secondary:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* Wizard Rules Section - Outside Container */
.wizard-rules {
    margin-bottom: 40px;
}

.rules-container {
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.08), rgba(123, 31, 162, 0.05));
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(74, 20, 140, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rules-header {
    text-align: center;
    margin-bottom: 30px;
}

.rules-header i {
    font-size: 48px;
    color: var(--primary-color, #4a148c);
    margin-bottom: 15px;
    display: block;
}

.rules-header h3 {
    color: var(--primary-color, #4a148c);
    font-size: 28px;
    font-weight: 600;
    margin: 0;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.rule-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.rule-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(74, 20, 140, 0.15);
    border-color: var(--primary-color, #4a148c);
}

.rule-card.example {
    grid-column: span 2;
    background: rgba(74, 20, 140, 0.05);
    border-color: rgba(74, 20, 140, 0.2);
}

.rule-card i {
    font-size: 36px;
    color: var(--primary-color, #4a148c);
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.rule-card:hover i {
    transform: scale(1.1);
    color: var(--secondary-color, #7b1fa2);
}

.rule-card h4 {
    color: var(--primary-color, #4a148c);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.rule-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.rule-card code {
    background: rgba(74, 20, 140, 0.1);
    color: var(--primary-color, #4a148c);
    padding: 3px 8px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 600;
}

.rule-card pre {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    overflow-x: auto;
    white-space: pre-wrap;
}

/* Responsive Rules */
@media (max-width: 768px) {
    .rules-container {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .rules-header i {
        font-size: 36px;
    }
    
    .rules-header h3 {
        font-size: 24px;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rule-card.example {
        grid-column: span 1;
    }
    
    .rule-card {
        padding: 20px;
    }
    
    .rule-card i {
        font-size: 30px;
    }
    
    .rule-card h4 {
        font-size: 16px;
    }
}

/* File Upload Styles */
.upload-instructions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card, .example-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid rgba(74, 20, 140, 0.1);
}

.info-card h4, .example-card h4 {
    color: var(--primary-color, #4a148c);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card i, .example-card i {
    color: var(--secondary-color, #7b1fa2);
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.info-card ul li:before {
    content: '✓';
    color: var(--secondary-color, #7b1fa2);
    font-weight: bold;
    min-width: 20px;
}

.info-card code {
    background: rgba(74, 20, 140, 0.1);
    color: var(--primary-color, #4a148c);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.example-card pre {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    overflow-x: auto;
}

.btn-outline.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
    border: 1px solid var(--primary-color, #4a148c);
    background: transparent;
    color: var(--primary-color, #4a148c);
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline.btn-sm:hover {
    background: var(--primary-color, #4a148c);
    color: white;
}

/* File Upload Container */
.file-upload-container {
    position: relative;
    margin-bottom: 15px;
}

#file-upload {
    display: none;
}

.file-upload-label {
    border: 2px dashed #e0e0e0;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.file-upload-label:hover,
.file-upload-label.drag-over {
    border-color: var(--secondary-color, #7b1fa2);
    background: rgba(74, 20, 140, 0.05);
    transform: scale(1.02);
}

.file-upload-label.drag-over {
    border-color: var(--primary-color, #4a148c);
    background: rgba(74, 20, 140, 0.1);
    box-shadow: 0 0 20px rgba(74, 20, 140, 0.2);
}

.file-upload-label i {
    font-size: 48px;
    color: var(--primary-color, #4a148c);
    margin-bottom: 15px;
    display: block;
}

.file-upload-label span {
    display: block;
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
}

.file-upload-label small {
    color: #666;
    font-size: 14px;
}

/* File Preview */
.file-preview {
    border: 2px solid var(--primary-color, #4a148c);
    border-radius: 12px;
    background: rgba(74, 20, 140, 0.05);
    padding: 20px;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(74, 20, 140, 0.2);
}

.file-info i {
    font-size: 32px;
    color: var(--primary-color, #4a148c);
}

.file-details {
    flex: 1;
}

.file-name {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.file-size {
    display: block;
    color: #666;
    font-size: 14px;
}

.btn-remove {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove:hover {
    background: #c82333;
    transform: scale(1.1);
}

.file-content-preview {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    white-space: pre-wrap;
    word-break: break-word;
    max-height: 150px;
    overflow-y: auto;
}

/* Responsive Upload */
@media (max-width: 768px) {
    .upload-instructions {
        grid-template-columns: 1fr;
    }
    
    .file-upload-label {
        padding: 30px 15px;
    }
    
    .file-upload-label i {
        font-size: 36px;
    }
    
    .file-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .file-details {
        text-align: center;
    }
}
@media (max-width: 768px) {
    .wizard-container {
        padding: 20px;
        margin: 20px;
    }
    
    .step-indicators {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .step-indicators::before {
        display: none;
    }
    
    .model-options {
        grid-template-columns: 1fr;
    }
    
    .pricing-options {
        grid-template-columns: 1fr;
    }
    
    .wizard-buttons {
        flex-direction: column;
    }
    
    .wizard-buttons .btn {
        max-width: 100%;
    }
}

/* Payment Step Styles */
.payment-summary {
    margin-bottom: 30px;
}

.summary-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 16px;
    border: 2px solid rgba(74, 20, 140, 0.1);
}

.summary-card h4 {
    color: var(--primary-color, #4a148c);
    margin-bottom: 20px;
    font-size: 18px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    font-weight: bold;
    font-size: 18px;
    color: var(--primary-color, #4a148c);
    border-top: 2px solid var(--primary-color, #4a148c);
    margin-top: 10px;
    padding-top: 15px;
}

.payment-methods {
    margin-bottom: 30px;
}

.payment-methods h4 {
    color: var(--primary-color, #4a148c);
    margin-bottom: 20px;
    text-align: center;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.payment-card {
    padding: 25px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-card:hover {
    border-color: var(--secondary-color, #7b1fa2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.payment-card.active {
    border-color: var(--primary-color, #4a148c);
    background: rgba(74, 20, 140, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 20, 140, 0.2);
}

.payment-logo {
    font-size: 48px;
    color: var(--primary-color, #4a148c);
    margin-bottom: 15px;
}

.payment-card h5 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.payment-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.payment-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid rgba(74, 20, 140, 0.1);
    margin-bottom: 20px;
}

/* PayPal Mock Button */
.paypal-mock {
    text-align: center;
}

.paypal-btn {
    background: #FFC439;
    color: #003087;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.paypal-btn:hover {
    background: #FFB819;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 196, 57, 0.3);
}

.paypal-note {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Credit Card Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

#creditCardForm input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

#creditCardForm input:focus {
    outline: none;
    border-color: var(--primary-color, #4a148c);
    box-shadow: 0 0 0 3px rgba(74, 20, 140, 0.1);
}

/* Payment Success */
.payment-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 64px;
    color: #4caf50;
    margin-bottom: 20px;
    animation: success 0.5s ease;
}

.payment-success h4 {
    color: #4caf50;
    font-size: 24px;
    margin-bottom: 15px;
}

.payment-success p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.success-details {
    background: rgba(76, 175, 80, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border: 2px solid rgba(76, 175, 80, 0.2);
}

.success-details p {
    margin: 5px 0;
    color: #333;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color, #4a148c), var(--secondary-color, #7b1fa2));
    color: white;
    padding: 25px 30px;
    text-align: center;
}

.modal-header i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

.modal-info {
    background: rgba(74, 20, 140, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid rgba(74, 20, 140, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: var(--primary-color, #4a148c);
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.info-item span {
    color: #333;
    font-size: 14px;
}

.modal-note {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
}

.modal-note i {
    color: #ffc107;
    margin-right: 8px;
}

.modal-footer {
    background: #f8f9fa;
    padding: 20px 30px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    border-top: 1px solid #e9ecef;
}

.paypal-btn-modal {
    background: #FFC439;
    color: #003087;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.paypal-btn-modal:hover {
    background: #FFB819;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 196, 57, 0.3);
}

.btn-paypal-official {
    background: rgb(255, 209, 64);
    color: rgb(0, 0, 0);
    border: none;
    padding: 0px 2rem;
    height: 2.625rem;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 11.625rem;
    justify-content: center;
}

.btn-paypal-official:hover {
    background: rgb(255, 196, 57);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 209, 64, 0.3);
}

.btn-paypal-official i {
    font-size: 1.2rem;
}

.paypal-note {
    background: rgba(255, 196, 57, 0.1);
    border: 1px solid rgba(255, 196, 57, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    font-size: 14px;
    color: #666;
}

.paypal-note i {
    color: #FFC439;
    margin-right: 8px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        max-width: none;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h3 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        flex-direction: column;
        padding: 15px 20px;
    }
    
    .modal-footer .btn {
        width: 100%;
        margin: 0;
    }
}

/* Responsive Payment */
@media (max-width: 768px) {
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .summary-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .summary-item span:last-child {
        font-weight: bold;
    }
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
