/* ==========================================================================
   UNI-ENERGY :: Visual Style & CSS Guide
   ========================================================================== */

/* --- CSS Variables (Root) --- */
:root {
  --color-dark-bg: #1a252f; /* 35% darker than original */
  --color-light-bg: #FDF6E3; /* Light Peach/Cream */
  --color-primary: #E4B79D;   /* Peach/Orange Accent */
  --color-primary-dark: #D1A38A; /* Darker shade for hover */
  --color-text-on-dark: #FDF6E3;
  --color-text-on-light: #2C3E50;
  --color-subtle-text: #8FA1B2; 
  --color-button-bg: #1a252f; /* Button background */
  --color-button-text: #FDF6E3; /* Button text color */
  --font-family-main: 'Helvetica Neue', Arial, sans-serif;
  --border-radius-main: 12px;
}

/* --- General Body & Typography --- */
body {
  font-family: var(--font-family-main);
  background-color: var(--color-dark-bg);
  color: var(--color-text-on-dark);
  margin: 0;
  padding: 20px;
  min-height: 100vh;
}

h1, h2, h3 {
  color: var(--color-text-on-dark);
  font-weight: 600;
}

/* --- Layout Containers --- */
.app-screen {
  max-width: 400px;
  margin: auto;
  background-color: var(--color-dark-bg);
  padding: 15px;
  min-height: 100vh;
  position: relative;
}

.card {
  background-color: var(--color-light-bg);
  color: var(--color-text-on-light);
  padding: 20px;
  border-radius: var(--border-radius-main);
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  width: 100%;
  padding: 15px;
  border-radius: var(--border-radius-main);
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  background-color: var(--color-button-bg);
  color: var(--color-button-text);
  margin-bottom: 10px;
}

.btn-inline {
  display: inline-block;
  width: auto;
  margin: 0 10px;
  min-width: 120px;
}

.btn-center {
  text-align: center;
}

.btn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

/* Financial Summary Grid - Ensure cards fit within container */
.financial-summary .btn-grid {
  gap: 10px;
  margin: 0;
  width: 100%;
}

.financial-summary .stat-card {
  padding: 15px;
  margin: 0;
  min-height: auto;
  box-sizing: border-box;
}

.stat-card {
  background-color: var(--color-primary);
  color: var(--color-text-on-light);
  padding: 15px;
  border-radius: var(--border-radius-main);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  box-sizing: border-box;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--color-text-on-light);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-on-light);
  text-align: center;
  line-height: 1.2;
}

/* Responsive design for financial summary */
@media (max-width: 480px) {
  .financial-summary .btn-grid {
    gap: 8px;
  }
  
  .financial-summary .stat-card {
    padding: 12px;
    min-height: 70px;
  }
  
  .stat-value {
    font-size: 1.3rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

.btn-square {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: var(--border-radius-main);
  border: none;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  background-color: var(--color-primary);
  color: var(--color-text-on-light);
  text-decoration: none;
}

.btn-square:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.btn-square i {
  font-size: 2rem;
  margin-bottom: 10px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-on-light);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
}

.btn-secondary {
  background-color: var(--color-subtle-text);
  color: var(--color-text-on-dark);
}

/* --- Forms & Inputs --- */
.form-group {
  margin-bottom: 15px;
}

input[type="text"],
input[type="password"],
input[type="number"],
select {
  width: 100%;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-subtle-text);
  border-radius: var(--border-radius-main);
  color: var(--color-text-on-light);
  font-size: 1rem;
  box-sizing: border-box;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.15);
}

/* --- Profile & List Items --- */
.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--color-subtle-text);
  margin: 0 auto 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-text-on-dark);
}

/* Bank Account Styling */
.bank-account {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: var(--border-radius-main);
  margin-bottom: 15px;
}

.bank-info {
  text-align: center;
}

/* Bank Account Copy Buttons */
.bank-account .copy-btn {
  background-color: var(--color-primary);
  color: var(--color-text-on-light);
  padding: 8px 15px;
  border-radius: var(--border-radius-main);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  margin: 5px 0;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.bank-account .copy-btn:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.bank-account .account-number {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-primary);
  margin: 10px 0;
}

.bank-account .bank-name {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color-text-on-light);
  margin-bottom: 10px;
}

.list-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-subtle-text);
}



/* --- Investment Plans --- */
.plan-card {
  background: linear-gradient(135deg, var(--color-light-bg), #f0f0f0);
  border: 2px solid var(--color-primary);
  transition: all 0.3s ease;
  cursor: pointer;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.plan-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  display: block;
}

.plan-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-primary);
  text-align: center;
}

.plan-profit {
  text-align: center;
  margin: 10px 0;
}

/* --- Dashboard Stats --- */
.stat-card {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-text-on-light);
  text-align: center;
  padding: 20px;
  border-radius: var(--border-radius-main);
  margin-bottom: 15px;
}

/* Financial Summary specific stat cards */
.financial-summary .stat-card {
  padding: 10px;
  margin: 0;
  margin-bottom: 0;
  min-height: 80px;
}

.financial-summary .stat-value {
  font-size: 1.5rem;
  margin-bottom: 3px;
}

.financial-summary .stat-label {
  font-size: 0.8rem;
  opacity: 0.9;
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* --- Page Header --- */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  margin-bottom: 20px;
  position: relative;
}

.back-btn {
  background-color: var(--color-primary);
  color: var(--color-text-on-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.back-btn:hover {
  background-color: var(--color-primary-dark);
  transform: translateX(-2px);
}

.header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
}

.small-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.small-logo:hover {
  transform: scale(1.1);
}

/* --- Floating Bottom Navigation Panel --- */
.floating-nav {
  position: fixed;
  bottom: 5px;
  left: 10px;
  right: 10px;
  z-index: 9999;
  background-color: var(--color-button-bg);
  border-radius: 25px;
  padding: 15px 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: auto;
}

.floating-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--color-button-text);
  font-size: 0.7rem;
  transition: all 0.3s ease;
  padding: 8px 8px;
  border-radius: 20px;
  min-width: 45px;
  flex: 1;
  text-align: center;
}

.floating-nav-item:hover {
  color: var(--color-button-text);
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.floating-nav-item.active {
  background-color: rgba(255, 255, 255, 0.3);
  color: var(--color-button-text);
}

.floating-nav-item.clicked {
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale(0.95);
}

.floating-nav-icon {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

/* --- Floating Telegram Button --- */
.telegram-float {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  width: 48px;
  height: 48px;
}

.telegram-btn {
  width: 100%;
  height: 100%;
  background-color: #0088cc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.telegram-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* --- Copy Button --- */
.copy-btn {
  background-color: var(--color-primary);
  color: var(--color-text-on-light);
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  margin-left: 10px;
  transition: background-color 0.3s ease;
}

.copy-btn:hover {
  background-color: var(--color-primary-dark);
}

/* --- Bank Account Display --- */
.bank-account {
  background-color: var(--color-light-bg);
  padding: 15px;
  border-radius: var(--border-radius-main);
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bank-info {
  flex: 1;
}

.bank-name {
  font-weight: bold;
  color: var(--color-text-on-light);
  margin-bottom: 5px;
}

.account-number {
  font-family: monospace;
  font-size: 1.1rem;
  color: var(--color-primary);
}

/* --- Flash Messages --- */
.flash-message {
  padding: 15px;
  border-radius: var(--border-radius-main);
  margin-bottom: 20px;
  text-align: center;
}

.flash-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.flash-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* --- Admin Dashboard --- */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background-color: var(--color-light-bg);
  border-radius: var(--border-radius-main);
  overflow: hidden;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--color-subtle-text);
}

.admin-table th {
  background-color: var(--color-primary);
  color: var(--color-text-on-light);
  font-weight: bold;
}

.admin-table tr:hover {
  background-color: rgba(228, 183, 157, 0.1);
}

.admin-table tr.clickable {
  cursor: pointer;
}

.admin-table tr.selected {
  background-color: rgba(228, 183, 157, 0.3);
}

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

.modal.show {
  display: block !important;
}

.modal-content {
  background-color: #ffffff;
  margin: 3% auto;
  padding: 25px;
  border-radius: 15px;
  width: 90%;
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  color: #333;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 2px solid var(--color-primary);
}

.close {
  color: var(--color-subtle-text);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: var(--color-text-on-light);
}

.modal h3 {
  color: var(--color-text-on-light);
  margin-bottom: 20px;
  text-align: center;
}

.modal .form-group {
  margin-bottom: 15px;
}

.modal label {
  display: block;
  margin-bottom: 5px;
  color: var(--color-text-on-light);
  font-weight: bold;
}

.modal input {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--color-subtle-text);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-text-on-light);
}

.modal .btn {
  width: auto;
  margin: 10px 5px;
}

/* --- Responsive Design --- */
@media (max-width: 480px) {
  .app-screen {
    padding: 10px;
  }
  
  .card {
    padding: 15px;
  }
  
  .btn {
    padding: 12px;
    font-size: 1rem;
  }
  
  .telegram-float {
    right: 15px;
    width: 42px;
    height: 42px;
  }
  
  .floating-nav {
    bottom: 3px;
    left: 5px;
    right: 5px;
    padding: 12px 15px;
  }
  
  .floating-nav-item {
    font-size: 0.6rem;
    padding: 6px 10px;
    min-width: 45px;
  }
  
  .floating-nav-icon {
    font-size: 1.1rem;
  }
}

@media (max-width: 360px) {
  .floating-nav {
    bottom: 2px;
    left: 3px;
    right: 3px;
    padding: 10px 12px;
  }
  
  .floating-nav-item {
    font-size: 0.55rem;
    padding: 5px 8px;
    min-width: 40px;
  }
  
  .floating-nav-icon {
    font-size: 1rem;
  }
}

/* --- Animation for recruitment message --- */
.recruitment-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* --- Pending Withdrawal Section --- */
.pending-withdrawals {
  background-color: var(--color-light-bg);
  padding: 20px;
  border-radius: var(--border-radius-main);
  margin-top: 20px;
}

.pending-title {
  color: var(--color-text-on-light);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}

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

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

.withdrawal-amount {
  font-weight: bold;
  color: var(--color-primary);
}

.withdrawal-status {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.status-pending {
  background-color: #ffc107;
  color: #212529;
}

.status-approved {
  background-color: #28a745;
  color: white;
}

.status-rejected {
  background-color: #dc3545;
  color: white;
}

/* --- Wide Bottom Logout Button --- */
.bottom-logout-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 40px auto 20px auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 500px;
}

.bottom-logout-btn {
  width: 100%;
  max-width: 400px;
  padding: 15px 30px;
  font-size: 16px;
  background-color: #6c757d;
  border-color: #6c757d;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-weight: 500;
  margin: 0 auto;
}

.bottom-logout-btn:hover {
  background-color: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(108, 117, 125, 0.4);
  color: white;
  text-decoration: none;
}

.bottom-logout-btn:active {
  transform: translateY(0);
}

.bottom-logout-btn i {
  margin-right: 10px;
}

/* Mobile responsive for bottom logout */
@media (max-width: 768px) {
  .bottom-logout-btn {
    max-width: 90%;
    padding: 12px 25px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .bottom-logout-btn {
    max-width: 95%;
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Call Center Float Button */
.call-center-float {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1000;
}

.call-center-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border: none;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  transform: translateY(0);
  font-weight: bold;
}

.call-center-btn:hover {
  background: linear-gradient(135deg, #4CAF50, #25D366);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 6px 20px rgba(0, 0, 0, 0.4);
}

.call-center-btn.active {
  background-color: var(--color-primary-dark);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(228, 183, 157, 0.8);
}

.call-center-btn.clicked {
  transform: translateY(2px) scale(1.15);
  background: linear-gradient(135deg, #128C7E, #075E54);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 1px 5px rgba(37, 211, 102, 0.5);
  transition: all 0.1s ease;
}



/* Optimized animations removed for better performance */

/* Mobile Responsiveness for Call Center */
@media (max-width: 768px) {
  .call-center-float {
    bottom: 120px;
    right: 15px;
  }
  
  .call-center-btn {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }
  

}

@media (max-width: 480px) {
  .call-center-float {
    bottom: 140px;
    right: 10px;
  }
  
  .call-center-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  

}

/* Referral Code Field Enhancement */
.referral-code-field {
  position: relative;
}

.referral-code-field.auto-filled input {
  background-color: var(--color-light-bg) !important;
  border: 2px solid var(--color-primary) !important;
  color: var(--color-primary) !important;
  font-weight: 600;
}

.referral-code-field.auto-filled input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.2);
}

.referral-code-field .auto-fill-indicator {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-size: 1.2rem;
  pointer-events: none;
}

.referral-code-field .auto-fill-message {
  color: var(--color-primary);
  font-size: 0.8rem;
  margin-top: 5px;
  font-style: italic;
}

/* Enhanced referral link styling */
.referral-link-container {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: 20px;
  border-radius: var(--border-radius-main);
  color: white;
  margin: 20px 0;
}

.referral-link-container h4 {
  color: white;
  margin-bottom: 15px;
}

.referral-link-display {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 15px;
  border-radius: var(--border-radius-main);
  font-family: monospace;
  font-size: 0.9rem;
  word-break: break-all;
  margin: 15px 0;
}

.referral-link-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.referral-link-features .feature {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Teams Page Styles */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.stat-card {
    background: var(--color-light-bg);
    border: 2px solid var(--color-primary);
    border-radius: var(--border-radius-main);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 2rem;
    color: var(--color-primary);
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--color-text-on-light);
    font-size: 0.9rem;
}

.referral-code-container,
.referral-link-container {
    text-align: center;
    margin-bottom: 20px;
}

.referral-code-display,
.referral-link-display {
    background: var(--color-light-bg);
    border: 2px solid var(--color-primary);
    border-radius: var(--border-radius-main);
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.referral-code,
.referral-link {
    font-family: monospace;
    font-size: 1.1rem;
    color: #000;
    font-weight: bold;
    word-break: break-all;
    flex: 1;
}

.team-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: var(--color-light-bg);
    border-radius: var(--border-radius-main);
    overflow: hidden;
}

.team-table th {
    background-color: var(--color-primary);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: bold;
}

.team-table td {
    padding: 15px;
    border-bottom: 1px solid var(--color-subtle-text);
    color: var(--color-text-on-light);
}

.team-table tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.team-table tr:last-child td {
    border-bottom: none;
}

/* Copy button styles */
.copy-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-btn:hover {
    background: var(--color-secondary);
    transform: scale(1.05);
}

.copy-btn:active {
    transform: scale(0.95);
}


