:root {
    --primary-color: #236AFC;
    --secondary-color: #643CBB;
    --text-color: #FFFFFF;
    --text-light: #7C7C7C;
    --background-color: #101114;
    --card-gradient: linear-gradient(135deg, #9C3FE4 0%, #C65647 100%);
    --modal-background: rgba(28, 28, 30, 0.92);
    --modal-blur-background: rgba(28, 28, 30, 0.8);
    --border-color: rgba(255, 255, 255, 0.1);
    --action-item-bg: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

html {
    touch-action: manipulation;
}

body {
    color: var(--text-color);
    background-color: var(--background-color);
    min-height: 100vh;
    position: relative;
}

.container {
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(180deg, #236AFC 0%, #101114 25%);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bankrut-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
}

.bankrut-logo img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.bankrut-logo span {
    font-size: 16px;
    font-weight: 600;
}

.sort-icon, .notification-icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sort-icon.profile-image-container {
    overflow: hidden;
}

.sort-icon.profile-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.sort-icon img, .notification-icon img {
    width: 24px;
    height: 24px;
}

.welcome-text {
    text-align: center;
    color: var(--text-color);
    opacity: 0.7;
    font-size: 16px;
    font-weight: 600;
}

.card {
    position: relative;
    border-radius: 16px;
    padding: 20px;
    color: white;
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgb(16 17 20 / 27%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid #1011141c;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(255 255 255 / 9%) 0%, #ffffff05 60%);
    pointer-events: none;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/pattern.svg');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    filter: blur(1px);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.balance-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.balance-label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.5;
    margin-bottom: 4px;
    color: white;
}

.balance-amount {
    font-size: 26px;
    font-weight: 700;
    color: white;
}

.card-number {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.card-details {
    display: flex;
    justify-content: space-between;
}

.card-holder, .valid-thru {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.label {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.7;
    color: white;
}

.value {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    padding: 0 10px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.action-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--action-item-bg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-icon img {
    width: 24px;
    height: 24px;
    opacity: 0.9;
}

.action-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color);
}

.transactions {
    margin-bottom: 32px;
}

.transactions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 0 10px;
}

.transactions-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}

.transactions-header img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.transaction-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.transaction-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--action-item-bg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.transaction-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.transaction-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.transaction-time {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
}

.transaction-amount {
    color: #28a745;
}

.bank-account {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.iban-label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.5;
    margin-bottom: 4px;
    color: white;
}

.iban-value {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    word-break: break-word;
    color: white;
}

.copy-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(31 87 201 / 74%);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.copy-notification.visible {
    opacity: 1;
    visibility: visible;
}

/* Ortak modal stilleri */
.transaction-modal,
.transaction-table-modal,
.commission-modal,
.withdraw-modal,
.bills-modal,
.coming-soon-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1000;
    display: none;
    visibility: hidden;
    transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: background-color, visibility;
}

.transaction-modal.visible,
.transaction-table-modal.visible,
.commission-modal.visible,
.withdraw-modal.visible,
.bills-modal.visible,
.coming-soon-modal.visible {
    background-color: rgba(0, 0, 0, 0.5);
    visibility: visible;
}

.transaction-modal.closing,
.transaction-table-modal.closing,
.commission-modal.closing,
.withdraw-modal.closing,
.bills-modal.closing,
.coming-soon-modal.closing {
    background-color: rgba(0, 0, 0, 0);
}

.transaction-modal .modal-content,
.transaction-table-modal .modal-content,
.commission-modal .modal-content,
.withdraw-modal .modal-content,
.bills-modal .modal-content,
.coming-soon-modal .modal-content {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(28, 28, 30, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px 20px 0 0;
    padding: 20px;
    color: #FFFFFF;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.transaction-modal.visible .modal-content,
.transaction-table-modal.visible .modal-content,
.commission-modal.visible .modal-content,
.withdraw-modal.visible .modal-content,
.bills-modal.visible .modal-content,
.coming-soon-modal.visible .modal-content {
    transform: translateY(0);
}

.transaction-modal.closing .modal-content,
.transaction-table-modal.closing .modal-content,
.commission-modal.closing .modal-content,
.withdraw-modal.closing .modal-content,
.bills-modal.closing .modal-content,
.coming-soon-modal.closing .modal-content {
    transform: translateY(100%);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    font-family: -apple-system, 'SF Pro Display', 'Plus Jakarta Sans', sans-serif;
}

.close-button {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.close-button svg {
    width: 14px;
    height: 14px;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.transaction-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-family: -apple-system, 'SF Pro Text', 'Plus Jakarta Sans', sans-serif;
}

.detail-value {
    font-size: 15px;
    color: #FFFFFF;
    font-weight: 500;
    font-family: -apple-system, 'SF Pro Text', 'Plus Jakarta Sans', sans-serif;
}

.amount-positive {
    color: #30D158;
    font-weight: 600;
}

.monospace {
    font-family: 'SF Mono', monospace;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.status-success {
    color: #30D158;
    background-color: rgba(48, 209, 88, 0.2);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.2px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

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

.notification-icon img.spinning {
    animation: spin 1s linear infinite;
}

.transaction-table-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1000;
    display: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity;
}

.transaction-table-modal.visible {
    background-color: rgba(0, 0, 0, 0.5);
}

.transaction-table-modal.closing {
    background-color: rgba(0, 0, 0, 0);
}

.transaction-table-modal .modal-content {
    will-change: transform;
}

.transaction-table-modal .modal-content {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgb(28 28 30);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px 20px 0 0;
    padding: 20px;
    color: #FFFFFF;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.1);
    will-change: transform;
}

.transaction-table-modal.visible .modal-content {
    transform: translateY(0);
}

.transaction-table-modal.closing .modal-content {
    transform: translateY(100%);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
}

.modal-body {
    overflow-y: auto;
    max-height: 70vh;
    padding-top: 16px;
    padding-bottom: 16px;
}

.transactions-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.table-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.table-item:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.08);
}

.table-item .transaction-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-item .transaction-icon img {
    width: 20px;
    height: 20px;
}

.transaction-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.primary-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.secondary-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sender {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
}

.amount {
    font-weight: 600;
    font-size: 16px;
}

.amount.positive {
    color: #30D158;
}

.amount.negative {
    color: #FF453A;
}

.description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Modal güncellemeleri */
.transaction-table-modal .modal-content {
    padding-top: 24px;
}

.transaction-table-modal .modal-header {
    padding: 0 16px 16px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
}

.transaction-table-modal .close-button {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.transaction-table-modal .close-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.transaction-table-modal .close-button svg {
    width: 14px;
    height: 14px;
}

.dynamic-island {
    position: fixed;
    top: 20px;
    left: -100%;
    transform: scale(0.8);
    background: rgba(28, 28, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    width: 90%;
    max-width: 320px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.32, 0.72, 0, 1);
    z-index: 1100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dynamic-island.active {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    padding: 16px;
    left: 20px;
}

.dynamic-island-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.user-name {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
}

.user-email {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.logout-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 59, 48, 0.1);
    border: none;
    padding: 12px;
    border-radius: 12px;
    color: #FF3B30;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.logout-button:active {
    transform: scale(0.98);
    background: rgba(255, 59, 48, 0.2);
}

.logout-button img {
    width: 16px;
    height: 16px;
    opacity: 0.9;
}

.sort-icon.active {
    background: var(--primary-color);
}

.island-close-button {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
}

.island-close-button:active {
    transform: scale(0.92);
    background: rgba(255, 255, 255, 0.2);
}

.commission-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1000;
    display: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.commission-modal.visible {
    background-color: rgba(0, 0, 0, 0.5);
}

.commission-modal.closing {
    background-color: rgba(0, 0, 0, 0);
}

.commission-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.commission-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.commission-name {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
}

.commission-value {
    font-size: 18px;
    font-weight: 600;
    color: #30D158;
}

.withdraw-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1000;
    display: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.withdraw-modal.visible {
    background-color: rgba(0, 0, 0, 0.5);
}

.withdraw-modal.closing {
    background-color: rgba(0, 0, 0, 0);
}

.withdraw-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.withdraw-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.withdraw-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.withdraw-type {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
}

.withdraw-account {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.withdraw-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.withdraw-amount {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
}

.withdraw-status {
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 6px;
}

.withdraw-status.success {
    background: rgba(48, 209, 88, 0.2);
    color: #30D158;
}

.withdraw-status.pending {
    background: rgba(255, 159, 10, 0.2);
    color: #FF9F0A;
}

.withdraw-status.failed {
    background: rgba(255, 69, 58, 0.2);
    color: #FF453A;
}

.bills-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1000;
    display: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bills-modal.visible {
    background-color: rgba(0, 0, 0, 0.5);
}

.bills-modal.closing {
    background-color: rgba(0, 0, 0, 0);
}

.bills-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bill-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.bill-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bill-id {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'SF Mono', monospace;
}

.customer-name {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
}

.bill-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.bill-amount {
    font-size: 15px;
    font-weight: 600;
    color: #30D158;
    margin-top: 4px;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.share-button:active {
    transform: scale(0.96);
    background: rgba(255, 255, 255, 0.15);
}

.share-button svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.share-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(48, 209, 88, 0.9);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
}

.share-notification.visible {
    opacity: 1;
    visibility: visible;
}

.coming-soon-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1000;
    display: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.coming-soon-modal.visible {
    background-color: rgba(0, 0, 0, 0.5);
}

.coming-soon-modal.closing {
    background-color: rgba(0, 0, 0, 0);
}

.coming-soon-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.cool-face {
    width: 64px;
    height: 64px;
    color: #FFFFFF;
}

.coming-soon-content p {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* Tam ekran yükleniyor göstergesi */
.fullscreen-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 17, 20, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.fullscreen-loader.active {
    opacity: 1;
    visibility: visible;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(35, 106, 252, 0.2);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-content p {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
}

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

/* İşlem, fatura ve diğer listelerdeki metin sınırlamaları */
.transaction-item .transaction-title,
.bill-item .bill-id,
.bill-item .customer-name,
.withdraw-item .withdraw-type,
.withdraw-item .withdraw-account {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px; /* Mobil görünüm için uygun bir genişlik */
}

/* Tablet ve masaüstü için daha geniş alan */
@media screen and (min-width: 768px) {
    .transaction-item .transaction-title,
    .bill-item .bill-id,
    .bill-item .customer-name,
    .withdraw-item .withdraw-type,
    .withdraw-item .withdraw-account {
        max-width: 200px;
    }
}

/* Table modal içindeki metin sınırlamaları */
.transactions-table .sender,
.transactions-table .description {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}

@media screen and (min-width: 768px) {
    .transactions-table .sender,
    .transactions-table .description {
        max-width: 180px;
    }
}