/* Customer Information Page Specific Styles */

/* Main Layout */
.customer-main {
  margin-left: 280px;
  padding: 0;
  background-color: var(--bg-primary);
  min-height: 100vh;
}

/* Header Styles */
.customer-header {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
  border-bottom: 1px solid var(--border-color);
  padding: 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px var(--shadow-color);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

.header-title h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-title h1 i {
  color: var(--accent);
  font-size: 2rem;
}

.header-title p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 1.1rem;
}

.header-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-container i {
  position: absolute;
  left: 1rem;
  color: var(--text-tertiary);
  font-size: 1rem;
  z-index: 1;
}

.search-container input {
  padding: 0.875rem 1rem 0.875rem 3rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 1rem;
  width: 300px;
  transition: all 0.3s ease;
}

.search-container input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(41, 129, 174, 0.1);
  background-color: var(--bg-card);
}

/* Customer Content */
.customer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Customer Selector */
.customer-selector-section {
  background-color: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px var(--shadow-color);
  overflow: hidden;
}

.selector-card {
  padding: 2rem;
}

.selector-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.selector-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.selector-header h3 i {
  color: var(--accent);
}

.customer-count {
  background: linear-gradient(135deg, var(--accent), var(--info));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.customer-selector-wrapper {
  position: relative;
}

.customer-selector {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  padding-right: 3rem;
}

.customer-selector:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(41, 129, 174, 0.1);
  background-color: var(--bg-card);
}

/* Profile Overview */
.customer-profile-overview {
  background-color: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px var(--shadow-color);
  overflow: hidden;
}

.profile-card-main {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  position: relative;
  overflow: hidden;
}

.profile-card-main::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.profile-header-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}

.profile-avatar-section {
  position: relative;
  flex-shrink: 0;
}

.profile-avatar-large {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.profile-avatar-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.verification-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--success);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.profile-status-indicator {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.profile-status-indicator.online {
  background-color: var(--success);
}

.profile-status-indicator.away {
  background-color: var(--warning);
}

.profile-status-indicator.offline {
  background-color: var(--text-tertiary);
}

.profile-info-section {
  flex: 1;
  min-width: 0;
}

.profile-info-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: white;
}

.customer-title {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.customer-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.badge-customer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.badge-customer:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.badge-customer.verified {
  background: rgba(72, 187, 120, 0.2);
  color: var(--success);
  border: 1px solid rgba(72, 187, 120, 0.3);
}

.badge-customer.premium {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a202c;
  border: 1px solid #ffd700;
}

.badge-customer.active {
  background: rgba(66, 153, 225, 0.2);
  color: var(--info);
  border: 1px solid rgba(66, 153, 225, 0.3);
}

.customer-meta-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.meta-item i {
  color: rgba(255, 255, 255, 0.7);
  width: 16px;
  text-align: center;
}

.profile-actions-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

/* Account Cards Grid */
.accounts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.account-card {
  background-color: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px var(--shadow-color);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.account-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--info));
}

.account-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow-color);
}

.account-card.primary-account::before {
  background: linear-gradient(90deg, var(--accent), #1e6091);
}

.account-card.savings-account::before {
  background: linear-gradient(90deg, var(--success), #38a169);
}

.account-card.credit-card::before {
  background: linear-gradient(90deg, var(--warning), #dd6b20);
}

.account-card.investment-account::before {
  background: linear-gradient(90deg, var(--info), #3182ce);
}

.account-card.wallet-account::before {
  background: linear-gradient(90deg, #9f7aea, #805ad5);
}

.account-card.crypto-account::before {
  background: linear-gradient(90deg, #f6ad55, #ed8936);
}

.account-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem 1rem;
}

.account-type {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.account-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(41, 129, 174, 0.3);
}

.account-details h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.account-details p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.account-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.account-status.active {
  background-color: rgba(72, 187, 120, 0.1);
  color: var(--success);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: currentColor;
}

.account-balance {
  padding: 0 2rem 1rem;
}

.balance-main {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.balance-change {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.balance-change.positive {
  color: var(--success);
}

.balance-change.negative {
  color: var(--error);
}

.balance-change.neutral {
  color: var(--text-secondary);
}

.balance-change i {
  font-size: 0.8rem;
}

/* Credit Limit Visualization */
.credit-limit {
  padding: 0 2rem 1rem;
}

.limit-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.limit-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.limit-amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.limit-bar {
  width: 100%;
  height: 8px;
  background-color: var(--bg-tertiary);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.limit-used {
  height: 100%;
  background: linear-gradient(90deg, var(--warning), #dd6b20);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.limit-percentage {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
}

/* Portfolio Allocation */
.portfolio-allocation {
  padding: 0 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.allocation-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.allocation-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.allocation-color.stocks {
  background-color: var(--info);
}

.allocation-color.bonds {
  background-color: var(--success);
}

.allocation-color.cash {
  background-color: var(--warning);
}

.allocation-label {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.allocation-percentage {
  font-weight: 600;
  color: var(--text-primary);
}

/* Wallet Features */
.wallet-features {
  padding: 0 2rem 1rem;
  display: flex;
  justify-content: space-around;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--accent);
}

.feature-item span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Crypto Holdings */
.crypto-holdings {
  padding: 0 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.crypto-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--bg-tertiary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.crypto-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
}

.crypto-icon.btc {
  background: linear-gradient(135deg, #f7931a, #ff9500);
  color: white;
}

.crypto-icon.eth {
  background: linear-gradient(135deg, #627eea, #4f46e5);
  color: white;
}

.crypto-info {
  flex: 1;
}

.crypto-name {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.crypto-amount {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Account Info */
.account-info {
  padding: 0 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-row .label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.info-row .value {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
}

/* Account Actions */
.account-actions {
  display: flex;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  background-color: var(--bg-tertiary);
  border-top: 1px solid var(--border-color);
}

/* Transactions Section */
.transactions-section {
  background-color: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px var(--shadow-color);
  overflow: hidden;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-tertiary);
}

.section-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-header h3 i {
  color: var(--accent);
}

.section-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.filter-select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(41, 129, 174, 0.1);
}

.transactions-list {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.transaction-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--bg-tertiary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.transaction-item:hover {
  background-color: var(--bg-secondary);
  transform: translateX(4px);
}

.transaction-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.transaction-icon.credit {
  background-color: rgba(72, 187, 120, 0.1);
  color: var(--success);
}

.transaction-icon.debit {
  background-color: rgba(245, 101, 101, 0.1);
  color: var(--error);
}

.transaction-icon.transfer {
  background-color: rgba(66, 153, 225, 0.1);
  color: var(--info);
}

.transaction-icon.payment {
  background-color: rgba(237, 137, 54, 0.1);
  color: var(--warning);
}

.transaction-icon.crypto {
  background-color: rgba(247, 147, 26, 0.1);
  color: #f7931a;
}

.transaction-details {
  flex: 1;
  min-width: 0;
}

.transaction-details h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.transaction-details p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.transaction-date {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

.transaction-amount {
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 1rem;
  flex-shrink: 0;
}

.transaction-amount.positive {
  color: var(--success);
}

.transaction-amount.negative {
  color: var(--error);
}

.transaction-amount.neutral {
  color: var(--text-primary);
}

.transaction-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.transaction-status.completed {
  background-color: rgba(72, 187, 120, 0.1);
  color: var(--success);
}

.transaction-status.pending {
  background-color: rgba(237, 137, 54, 0.1);
  color: var(--warning);
}

.transaction-status.failed {
  background-color: rgba(245, 101, 101, 0.1);
  color: var(--error);
}

.transactions-footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-tertiary);
}

/* Quick Actions */
.quick-actions-section {
  background-color: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px var(--shadow-color);
  overflow: hidden;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

.quick-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text-primary);
}

.quick-action-btn:hover {
  background-color: var(--bg-secondary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-color);
  border-color: var(--accent);
}

.action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(41, 129, 174, 0.3);
}

.quick-action-btn span {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

/* Notification System */
#notification-container {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.notification {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 8px 24px var(--shadow-color);
  min-width: 300px;
  animation: slideInRight 0.3s ease;
}

.notification.success {
  border-left: 4px solid var(--success);
}

.notification.error {
  border-left: 4px solid var(--error);
}

.notification.warning {
  border-left: 4px solid var(--warning);
}

.notification.info {
  border-left: 4px solid var(--info);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.notification-content i {
  font-size: 1.2rem;
}

.notification.success .notification-content i {
  color: var(--success);
}

.notification.error .notification-content i {
  color: var(--error);
}

.notification.warning .notification-content i {
  color: var(--warning);
}

.notification.info .notification-content i {
  color: var(--info);
}

.notification-close {
  background: none;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.notification-close:hover {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Animation Classes */
.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.4s ease forwards;
}

.profile-update-animation {
  animation: profileUpdate 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes profileUpdate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .accounts-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 768px) {
  .customer-main {
    margin-left: 0;
  }

  .header-content {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }

  .header-actions {
    justify-content: center;
  }

  .search-container input {
    width: 100%;
  }

  .profile-header-section {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .customer-meta-info {
    align-items: center;
  }

  .accounts-grid {
    grid-template-columns: 1fr;
  }

  .transaction-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .transaction-amount {
    margin-right: 0;
    align-self: flex-end;
  }

  .quick-actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #notification-container {
    left: 1rem;
    right: 1rem;
    top: 1rem;
  }

  .notification {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .customer-content {
    padding: 1rem;
  }

  .customer-header {
    padding: 1.5rem;
  }

  .header-title h1 {
    font-size: 1.8rem;
  }

  .profile-header-section {
    padding: 2rem 1.5rem;
  }

  .profile-avatar-large {
    width: 100px;
    height: 100px;
  }

  .profile-info-section h2 {
    font-size: 1.8rem;
  }

  .customer-badges {
    justify-content: center;
  }

  .account-header,
  .account-balance,
  .account-info,
  .account-actions {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .transactions-list,
  .section-header,
  .transactions-footer {
    padding: 1.5rem;
  }

  .quick-actions-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .quick-action-btn {
    padding: 1.5rem 1rem;
  }

  .action-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}
