swiper-container {
    width: 100%;
    height: 100%;
}

swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* esim style */

.esim-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.esim-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.dark .esim-card {
    background-color: #1f2937;
    border-color: #374151;
    color: #f9fafb;
}

.esim-label {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.dark .esim-label {
    color: #9ca3af;
}

.esim-value {
    font-size: 1rem;
    font-weight: 600;
    word-break: break-word;
}

.esim-card a {
    color: #2563eb;
    text-decoration: underline;
}

.custom-stat-class .fi-wi-stats-overview-stat-value {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.fi:not(.dark) .ff-board__content .ff-column__title {
    color: #000;
}

/* الوضع الداكن */
.fi.dark .ff-column__title {
    color: #fff !important;
}
/*
 .kanban-board .ff-column__header {
   background-color: #0053f9 !important;
 } */

.esim-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ffffff;
    color: #1e1e1e;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    font-family: "Segoe UI", sans-serif;
}

/* === Titles === */
.esim-container .esim-title {
    font-size: 1.75rem;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.esim-container .esim-subtitle {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 1.5rem;
}

/* === Form === */
.esim-container .form-group {
    margin-bottom: 1.5rem;
}

.esim-container .form-label {
    font-weight: 600;
    margin-bottom: 0.4rem;
    display: inline-block;
}

.esim-container .form-select,
.esim-container .form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #fafafa;
    transition: border 0.3s ease;
}

.esim-container .form-select:focus,
.esim-container .form-input:focus {
    border-color: #2980b9;
    outline: none;
}

/* === Filters === */
.esim-container .bundle-filters {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.esim-container .filter-button {
    padding: 0.5rem 1.3rem;
    font-weight: 600;
    border: 1px solid #ccc;
    background-color: #f8f8f8;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.esim-container .filter-button.selected,
.esim-container .filter-button:hover {
    background-color: #2980b9;
    color: white;
    border-color: #2980b9;
}

/* === Bundle Cards === */
.esim-container .bundle-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.esim-container .bundle-card {
    padding: 1rem;
    background-color: #fdfdfd;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: 0.3s ease;
}

.esim-container .bundle-card:hover {
    border-color: #2980b9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.esim-container .bundle-card.selected {
    border: 2px solid #2980b9;
    background-color: #e7f3fd;
    font-weight: bold;
}

.esim-container .bundle-card img {
    width: 40px;
    margin-bottom: 0.5rem;
}

/* === Buttons === */
.esim-container .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    background-color: #2980b9;
    color: white;
    transition: background 0.3s ease;
}

.esim-container .btn:hover:not(:disabled) {
    background-color: #1f6697;
}

.esim-container .btn:disabled {
    background-color: #bbb;
    cursor: not-allowed;
}

/* === Modal === */
.esim-container .modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.esim-container .modal {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.esim-container .modal h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.esim-container .modal p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.esim-container .modal-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.esim-container .btn-confirm {
    background-color: #27ae60;
    color: white;
}

.esim-container .btn-cancel {
    background-color: #e74c3c;
    color: white;
}

/* esim style */

/* ====================================
   eSIM Purchase Component Styles
   ==================================== */

/* CSS Custom Properties */
:root {
    /* Colors */
    --esim-primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --esim-primary-color: #667eea;
    --esim-secondary-color: #764ba2;
    --esim-success-gradient: linear-gradient(135deg, #10b981, #059669);
    --esim-success-color: #10b981;
    --esim-danger-color: #ef4444;

    /* Neutrals */
    --esim-white: #ffffff;
    --esim-gray-50: #fafafa;
    --esim-gray-100: #f3f4f6;
    --esim-gray-200: #e5e7eb;
    --esim-gray-300: #d1d5db;
    --esim-gray-400: #9ca3af;
    --esim-gray-500: #6b7280;
    --esim-gray-600: #4b5563;
    --esim-gray-700: #374151;
    --esim-gray-800: #1f2937;
    --esim-gray-900: #1a1a1a;

    /* Spacing */
    --esim-spacing-xs: 0.25rem;
    --esim-spacing-sm: 0.5rem;
    --esim-spacing-md: 0.75rem;
    --esim-spacing-lg: 1rem;
    --esim-spacing-xl: 1.5rem;
    --esim-spacing-2xl: 2rem;
    --esim-spacing-3xl: 3rem;

    /* Border Radius */
    --esim-radius-sm: 6px;
    --esim-radius-md: 12px;
    --esim-radius-lg: 16px;
    --esim-radius-xl: 20px;

    /* Shadows */
    --esim-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --esim-shadow-md: 0 4px 15px rgba(102, 126, 234, 0.4);
    --esim-shadow-lg: 0 8px 25px rgba(102, 126, 234, 0.6);
    --esim-shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --esim-transition-fast: 0.2s ease;
    --esim-transition-normal: 0.3s ease;

    /* Font weights */
    --esim-font-normal: 400;
    --esim-font-medium: 500;
    --esim-font-semibold: 600;
    --esim-font-bold: 700;
}

/* RTL Support */
[dir="rtl"] .esim-container {
    direction: rtl;
}

[dir="rtl"] .selection-types {
    direction: rtl;
}

[dir="rtl"] .selection-type-btn {
    text-align: right;
}

[dir="rtl"] .bundle-cards {
    direction: rtl;
}

[dir="rtl"] .select-icon,
[dir="rtl"] .input-icon {
    right: auto;
    left: var(--esim-spacing-lg);
}

[dir="rtl"] .bundle-card__selection-indicator {
    right: auto;
    left: var(--esim-spacing-lg);
}

/* Base Container */
.esim-container {
    max-width: 900px;
    margin: var(--esim-spacing-2xl) auto;
    padding: var(--esim-spacing-2xl);
    background: var(--esim-primary-gradient);
    border-radius: var(--esim-radius-xl);
    box-shadow: var(--esim-shadow-xl);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
}

.esim-form {
    background: var(--esim-white);
    border-radius: var(--esim-radius-lg);
    padding: var(--esim-spacing-2xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Header Section */
.header-section {
    text-align: center;
    margin-bottom: var(--esim-spacing-2xl);
}

.esim-title {
    font-size: 2rem;
    font-weight: var(--esim-font-bold);
    color: var(--esim-gray-900);
    margin: 0 0 var(--esim-spacing-sm) 0;
    background: var(--esim-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.esim-subtitle {
    font-size: 1.1rem;
    color: var(--esim-gray-500);
    margin: 0;
}

/* Form Elements */
.form-group {
    margin-bottom: var(--esim-spacing-xl);
}

.form-label {
    display: flex;
    align-items: center;
    gap: var(--esim-spacing-xs);
    font-weight: var(--esim-font-semibold);
    color: var(--esim-gray-700);
    margin-bottom: var(--esim-spacing-sm);
}

.label-text {
    font-size: 1rem;
}

.label-required {
    color: var(--esim-danger-color);
    font-size: 0.875rem;
}

.label-optional {
    color: var(--esim-gray-400);
    font-size: 0.875rem;
    font-weight: var(--esim-font-normal);
}

/* Selection Types */
.selection-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--esim-spacing-lg);
    margin-bottom: var(--esim-spacing-sm);
}

.selection-type-btn {
    display: flex;
    align-items: center;
    gap: var(--esim-spacing-md);
    padding: var(--esim-spacing-lg);
    background: var(--esim-gray-50);
    border: 2px solid var(--esim-gray-200);
    border-radius: var(--esim-radius-md);
    cursor: pointer;
    transition: all var(--esim-transition-normal);
    text-align: left;
}

.selection-type-btn:hover {
    border-color: var(--esim-primary-color);
    background: #f8faff;
}

.selection-type-btn.active {
    border-color: var(--esim-primary-color);
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.1),
        rgba(118, 75, 162, 0.1)
    );
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.selection-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--esim-primary-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--esim-white);
}

.selection-type-btn.active .selection-icon {
    background: var(--esim-primary-gradient);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.selection-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--esim-spacing-xs);
}

.selection-title {
    font-weight: var(--esim-font-semibold);
    color: var(--esim-gray-800);
    font-size: 1rem;
}

.selection-desc {
    font-size: 0.875rem;
    color: var(--esim-gray-500);
}

/* Form Inputs */
.select-wrapper,
.input-wrapper {
    position: relative;
}

.form-select,
.form-input {
    width: 100%;
    padding: 0.875rem var(--esim-spacing-lg);
    border: 2px solid var(--esim-gray-200);
    border-radius: var(--esim-radius-md);
    font-size: 1rem;
    background-color: var(--esim-gray-50);
    transition: all var(--esim-transition-normal);
    appearance: none;
}

.form-select:focus,
.form-input:focus {
    border-color: var(--esim-primary-color);
    background-color: var(--esim-white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.select-icon,
.input-icon {
    position: absolute;
    right: var(--esim-spacing-lg);
    top: 50%;
    transform: translateY(-50%);
    color: var(--esim-gray-400);
    pointer-events: none;
}

/* Bundle Section */
.bundle-section {
    margin: var(--esim-spacing-2xl) 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--esim-spacing-xl);
    flex-wrap: wrap;
    gap: var(--esim-spacing-lg);
}

.section-title {
    font-size: 1.25rem;
    margin: 0;
}

/* Bundle Filters */
.bundle-filters {
    display: flex;
    gap: var(--esim-spacing-sm);
    background: var(--esim-gray-100);
    padding: var(--esim-spacing-xs);
    border-radius: 10px;
}

.filter-button {
    padding: var(--esim-spacing-sm) var(--esim-spacing-lg);
    font-weight: var(--esim-font-medium);
    border: none;
    background: transparent;
    border-radius: var(--esim-radius-sm);
    cursor: pointer;
    transition: all var(--esim-transition-fast);
    color: var(--esim-gray-500);
    font-size: 0.875rem;
}

.filter-button.selected {
    background: var(--esim-white);
    color: var(--esim-primary-color);
    box-shadow: var(--esim-shadow-sm);
}

.filter-button:hover:not(.selected) {
    color: var(--esim-gray-700);
}

/* Bundle Cards */
.bundle-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--esim-spacing-lg);
    max-height: 400px;
    overflow-y: auto;
    padding-right: var(--esim-spacing-sm);
    margin-right: calc(-1 * var(--esim-spacing-sm));
    padding: var(--esim-spacing-lg);
    border: 1px solid var(--esim-gray-200);
    border-radius: var(--esim-radius-md);
}

/* Custom Scrollbar */
.bundle-cards::-webkit-scrollbar {
    width: 6px;
}

.bundle-cards::-webkit-scrollbar-track {
    background: var(--esim-gray-100);
    border-radius: 3px;
}

.bundle-cards::-webkit-scrollbar-thumb {
    background: var(--esim-primary-gradient);
    border-radius: 3px;
}

.bundle-cards::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
}

/* Bundle Card */
.bundle-card {
    position: relative;
    padding: var(--esim-spacing-xl);
    background: var(--esim-gray-50);
    border: 2px solid var(--esim-gray-200);
    border-radius: var(--esim-radius-lg);
    cursor: pointer;
    transition: all var(--esim-transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bundle-card:hover {
    border-color: var(--esim-primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.bundle-card--selected {
    border-color: var(--esim-primary-color);
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.05),
        rgba(118, 75, 162, 0.05)
    );
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.bundle-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--esim-spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bundle-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bundle-card__default-icon {
    width: 100%;
    height: 100%;
    background: var(--esim-primary-gradient);
    border-radius: var(--esim-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--esim-white);
}

.bundle-card__content {
    flex: 1;
}

.bundle-card__name {
    font-size: 1.125rem;
    font-weight: var(--esim-font-semibold);
    color: var(--esim-gray-800);
    margin: 0 0 var(--esim-spacing-sm) 0;
}

.bundle-card__price {
    font-size: 1.5rem;
    font-weight: var(--esim-font-bold);
    color: var(--esim-primary-color);
    margin: 0 0 var(--esim-spacing-lg) 0;
}

.bundle-costs {
    display: flex;
    flex-direction: column;
    gap: var(--esim-spacing-xs);
    color:#e50707;
    margin-bottom: var(--esim-spacing-lg);
}

.bundle-card__features {
    display: flex;
    justify-content: center;
}

.feature-badge {
    padding: var(--esim-spacing-xs) var(--esim-spacing-md);
    background: var(--esim-gray-200);
    color: var(--esim-gray-500);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: var(--esim-font-medium);
}

.feature-badge--unlimited {
    background: var(--esim-success-gradient);
    color: var(--esim-white);
}

.bundle-card__selection-indicator {
    position: absolute;
    top: var(--esim-spacing-lg);
    right: var(--esim-spacing-lg);
    width: 24px;
    height: 24px;
    background: var(--esim-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--esim-white);
}

/* Shimmer Effects */
.bundle-card--shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    pointer-events: none;
}

.bundle-card__shimmer-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--esim-radius-md);
    background: #e0e0e0;
    margin-bottom: var(--esim-spacing-lg);
}

.bundle-card__shimmer-text {
    background: #e0e0e0;
    border-radius: 4px;
    margin-bottom: var(--esim-spacing-sm);
}

.bundle-card__shimmer-title {
    height: 1.5rem;
    width: 80%;
    margin: 0 auto var(--esim-spacing-sm) auto;
}

.bundle-card__shimmer-price {
    height: 1.25rem;
    width: 60%;
    margin: 0 auto;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--esim-spacing-3xl) var(--esim-spacing-lg);
    color: var(--esim-gray-500);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.empty-state__icon {
    margin-bottom: var(--esim-spacing-lg);
    opacity: 0.5;
}

.empty-state__text {
    font-size: 1.125rem;
    margin: 0;
}

/* Action Section */
.action-section {
    margin-top: var(--esim-spacing-2xl);
    text-align: center;
}

.action-section__help {
    margin-top: var(--esim-spacing-md);
    color: var(--esim-gray-400);
    font-size: 0.875rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--esim-spacing-sm);
    padding: 0.875rem var(--esim-spacing-2xl);
    font-weight: var(--esim-font-semibold);
    font-size: 1rem;
    border-radius: var(--esim-radius-md);
    cursor: pointer;
    border: none;
    transition: all var(--esim-transition-normal);
    text-decoration: none;
    min-width: 120px;
}

.btn--primary {
    background: var(--esim-primary-gradient);
    color: var(--esim-white);
    box-shadow: var(--esim-shadow-md);
}

.btn--primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--esim-shadow-lg);
}

.btn--secondary {
    background: var(--esim-gray-100);
    color: var(--esim-gray-500);
}

.btn--secondary:hover:not(:disabled) {
    background: var(--esim-gray-200);
    color: var(--esim-gray-700);
}

.btn--confirm {
    background: var(--esim-success-gradient);
    color: var(--esim-white);
}

.btn--confirm:hover:not(:disabled) {
    background: linear-gradient(135deg, #059669, #047857);
}

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

.btn__loading-text {
    display: flex;
    align-items: center;
    gap: var(--esim-spacing-sm);
}

.btn__spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal {
    background: var(--esim-white);
    border-radius: var(--esim-radius-xl);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--esim-spacing-xl) var(--esim-spacing-2xl);
    border-bottom: 1px solid var(--esim-gray-200);
}

.modal__header h3 {
    font-size: 1.5rem;
    font-weight: var(--esim-font-bold);
    color: var(--esim-gray-800);
    margin: 0;
}

.modal__close {
    background: none;
    border: none;
    color: var(--esim-gray-400);
    cursor: pointer;
    padding: var(--esim-spacing-xs);
    border-radius: var(--esim-radius-sm);
    transition: all var(--esim-transition-fast);
}

.modal__close:hover {
    background: var(--esim-gray-100);
    color: var(--esim-gray-500);
}

.modal__content {
    padding: var(--esim-spacing-2xl);
}

.modal__buttons {
    display: flex;
    gap: var(--esim-spacing-lg);
    padding: var(--esim-spacing-xl) var(--esim-spacing-2xl);
    border-top: 1px solid var(--esim-gray-200);
    justify-content: flex-end;
}

/* Purchase Summary */
.purchase-summary {
    display: flex;
    flex-direction: column;
    gap: var(--esim-spacing-lg);
}

.purchase-summary__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--esim-spacing-md) 0;
    border-bottom: 1px solid var(--esim-gray-100);
}

.purchase-summary__item:last-child {
    border-bottom: none;
}

.purchase-summary__label {
    font-weight: var(--esim-font-medium);
    color: var(--esim-gray-500);
}

.purchase-summary__value {
    font-weight: var(--esim-font-semibold);
    color: var(--esim-gray-800);
}

.purchase-summary__value--price {
    font-size: 1.25rem;
    color: var(--esim-primary-color);
}

/* Modal Transitions */
.modal-enter-active,
.modal-leave-active {
    transition: all var(--esim-transition-normal);
}

.modal-enter-from,
.modal-leave-to {
    opacity: 0;
    transform: scale(0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .esim-container {
        margin: var(--esim-spacing-lg);
        padding: var(--esim-spacing-lg);
    }

    .esim-form {
        padding: var(--esim-spacing-xl);
    }

    .selection-types {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: stretch;
    }

    .bundle-filters {
        justify-content: center;
    }

    .bundle-cards {
        grid-template-columns: 1fr;
        max-height: 300px;
    }

    .modal__buttons {
        flex-direction: column;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .bundle-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .selection-types {
        grid-template-columns: 1fr;
        gap: var(--esim-spacing-md);
    }
}

.bundles-container {
    padding: 0;
}

.bundles-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.bundle-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.2s ease;
}

.bundle-card:hover {
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

/* Bundle Header */
.bundle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 1.5rem 0;
    gap: 1rem;
}

.bundle-info {
    flex: 1;
    min-width: 0;
}

.bundle-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.bundle-title h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
    line-height: 1.4;
}

.bundle-count {
    background: #f3f4f6;
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    white-space: nowrap;
}

.bundle-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

.bundle-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.15s ease;
}

.action-btn:hover {
    color: #374151;
    border-color: #d1d5db;
    background: #f9fafb;
}

.remove-btn:hover {
    color: #dc2626;
    border-color: #fecaca;
    background: #fef2f2;
}

/* Bundle Summary */
.bundle-summary {
    padding: 1rem 1.5rem;
    background: #f9fafb;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
}

.data-overview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.data-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-value {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.overall-progress {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    white-space: nowrap;
}

/* Assignments */
.assignments-list {
    padding: 1.5rem;
}

.assignments-header {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.assignment-item {
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: #fafafa;
    transition: all 0.15s ease;
}

.assignment-item:hover {
    background: #f9fafb;
    border-color: #e5e7eb;
}

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

.assignment-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.assignment-id {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.id-badge {
    background: #111827;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
}

.assignment-type {
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.assignment-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    text-transform: capitalize;
}

.status-active {
    background: #d1fae5;
    color: #047857;
}

.status-inactive {
    background: #fee2e2;
    color: #dc2626;
}

.status-expired {
    background: #fef3c7;
    color: #d97706;
}

.assignment-date {
    color: #6b7280;
    font-size: 0.75rem;
}

.assignment-usage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.usage-info {
    flex: 1;
}

.usage-text {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.used-amount {
    font-weight: 600;
    color: #111827;
}

.usage-separator {
    color: #9ca3af;
    font-size: 0.875rem;
}

.total-amount {
    color: #6b7280;
}

.remaining-text {
    color: #059669;
    font-size: 0.75rem;
    font-weight: 500;
}

.usage-progress {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
}

.progress-track {
    width: 80px;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-small {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.usage-percentage {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    min-width: 35px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    background: white;
    border: 2px dashed #e5e7eb;
    border-radius: 12px;
}

.empty-icon {
    margin: 0 auto 1.5rem;
    color: #9ca3af;
}

.empty-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.5rem 0;
}

.empty-content p {
    color: #6b7280;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.empty-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.empty-action-btn:hover {
    background: #2563eb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bundles-grid {
        grid-template-columns: 1fr;
    }

    .bundle-header {
        padding: 1rem 1rem 0;
    }

    .bundle-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .data-stats {
        flex-direction: column;
        gap: 0.75rem;
    }

    .stat-item {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .assignment-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .assignment-usage {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .usage-progress {
        min-width: auto;
        justify-content: space-between;
    }

    .progress-track {
        flex: 1;
    }
}

.location-table {
    font-size: 0.875rem;
    border: 1px solid #000000;
    overflow: hidden;
}
.location-table th,
.location-table td {
    padding: 0.5rem;
    border: 1px solid #000000;
    text-align: center;
}

.fi.action-btn:hover .location-table {
    border-color: #444444;
}
.fi.dark .location-table th,
.fi.dark .location-table td {
    border-color: #444444;
}

.history-table {
    border: 1px solid #e5e7eb;
}
.history-table th,
.history-table td {
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    text-align: left;
}
.history-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #374151;
}

/* Organization Dashboard Styles - Clean Version */
.organization {
    min-height: 100vh;
    padding: 2rem;
    color: #333;
}

.organization * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.organization .container {
    max-width: 1400px;
    margin: 0 auto;
}

.organization .card {
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.organization .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.organization .card-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.organization .card-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.organization .card-body {
    padding: 2rem;
}

.organization .hero-card {
    position: relative;
    overflow: hidden;
}

.organization .hero-content {
    position: relative;
    z-index: 2;
}

.organization .company-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.organization .company-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.organization .company-id {
    font-size: 0.9rem;
    opacity: 0.7;
}

.organization .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.organization .stat-card {
    padding: 2rem;
    border-width: 1px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.organization .stat-value {
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.organization .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.organization .grid {
    display: grid;
    gap: 2rem;
}

.organization .grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.organization .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.organization .info-grid {
    display: grid;
    gap: 1rem;
}

.organization .info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.organization .info-row:last-child {
    border-bottom: none;
}

.organization .info-label {
    font-weight: 600;
    font-size: 0.9rem;
}

.organization .info-value {
    font-weight: 500;
}

.organization .badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.organization .badge-success {
    background: #10b981;
    color: white;
}

.organization .badge-warning {
    background: #f59e0b;
    color: white;
}

.organization .badge-danger {
    background: #ef4444;
    color: white;
}

.organization .badge-secondary {
    background: #6b7280;
    color: white;
}

.organization .badge-info {
    background: #3b82f6;
    color: white;
}

.organization .badge-gold {
    background: #fbbf24;
    color: #92400e;
}

.organization .address-block {
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.organization .user-card {
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.organization .user-card:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.organization .tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.organization .code-block {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1rem;
    border-radius: 8px;
    font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
    font-size: 0.85rem;
    word-break: break-all;
    position: relative;
}

.organization .code-block::before {
    content: "API";
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    background: #3b82f6;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.organization .settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.organization .setting-group h3 {
    color: #1e293b;
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.organization .setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.organization .setting-label {
    font-size: 0.9rem;
    color: #64748b;
    flex: 1;
}

.organization .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: currentColor;
}

.organization .link {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.organization .link:hover {
    color: #2563eb;
    text-decoration: underline;
}

.organization .fade-in {
    animation: organizationFadeIn 0.6s ease-out;
}

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

/* Responsive Design for Organization */
@media (max-width: 768px) {
    .organization {
        padding: 1rem;
    }

    .organization .grid-2,
    .organization .grid-3 {
        grid-template-columns: 1fr;
    }

    .organization .company-title {
        font-size: 2rem;
    }

    .organization .card-body {
        padding: 1.5rem;
    }
}

/* Organization-specific utility classes */
.organization .org-header {
    background: #1e293b;
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.organization .org-section {
    margin-bottom: 2rem;
}

.organization .org-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.organization .org-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

/* Additional clean theme variations */
.organization .primary-bg {
    background: #4f46e5;
}

.organization .secondary-bg {
    background: #6b7280;
}

.organization .success-bg {
    background: #10b981;
}

.organization .warning-bg {
    background: #f59e0b;
}

.organization .danger-bg {
    background: #ef4444;
}

.organization .info-bg {
    background: #3b82f6;
}

.organization .dark-bg {
    background: #1e293b;
}

.organization .light-bg {
    background: #f8fafc;
}

.fi.dark .organization {
    background: #0f172a;
    color: #cbd5e1 !important;
}

.fi.dark .organization .info-label {
    color: #cbd5e1 !important;
}

.fi.dark .organization .info-value {
    color: #f1f5f9 !important;
}

/* Order Details Custom Styles */

.order-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    border-width: 1px;
    border-radius: 16px;
}

.order-header {
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.order-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.order-reference {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.order-reference .label {
    font-weight: 600;
}

.order-reference .value {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.order-status {
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-completed {
    color: #22543d;
    border: 1px solid #9ae6b4;
}

.status-message {
    color: #4a5568;
    font-weight: 500;
}

.order-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-card {
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 1.125rem;
    font-weight: 700;
}

.balance-positive {
    color: #38a169 !important;
}

.order-items {
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
}

.item-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.item-card:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.item-type-badge {
    background: #bee3f8;
    color: #2b6cb0;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
}

.reassign-badge {
    background: #fed7d7;
    color: #c53030;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.item-details {
    margin-bottom: 1rem;
}

.item-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    text-transform: capitalize;
    margin-bottom: 0.5rem;
}

.item-quantity {
    color: #718096;
    font-weight: 500;
}

.item-pricing {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 6px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.pricing-row:last-child {
    margin-bottom: 0;
}

.pricing-label {
    color: #4a5568;
    font-weight: 500;
}

.pricing-value {
    font-weight: 600;
    color: #2d3748;
}

.refund-amount {
    color: #e53e3e !important;
}

.order-total {
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #e53e3e;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
}

.total-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2d3748;
}

.refund-total {
    color: #e53e3e !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .order-container {
        padding: 1rem;
    }

    .order-title {
        font-size: 1.5rem;
    }

    .order-reference {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-status {
        flex-direction: column;
        text-align: center;
    }

    .item-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .total-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .order-container {
        padding: 0;
        box-shadow: none;
    }

    .order-header,
    .order-status,
    .info-card,
    .order-items,
    .order-total {
        box-shadow: none;
        border: 1px solid #e2e8f0;
    }
}
