/* GCash Style Banking System */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

:root {
  --gcash-blue: #0066cc;
  --gcash-light-blue: #0095ff;
  --gcash-dark-blue: #004c99;
  --gcash-royal-blue: #0000ff;
  --gcash-white: #ffffff;
  --gcash-light-gray: #f5f7fa;
  --gcash-gray: #767676;
  --gcash-dark-gray: #333333;
  --gcash-border: #e5e5e5;
  --gcash-background: #f3f3f3;
  --gcash-green: #26a65b;
  --gcash-red: #e74c3c;
}

body {
  background-color: var(--gcash-light-gray);
  margin: 0;
  padding: 0;
  color: var(--gcash-dark-gray);
}

/* Container Styles */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.mobile-container {
  max-width: 414px;
  margin: 0 auto;
  background-color: var(--gcash-light-gray);
  position: relative;
  min-height: 100vh;
}

.admin-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header Styles */
.header {
  background-color: var(--gcash-blue);
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.gcash-header {
  background-color: var(--gcash-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid var(--gcash-border);
}

.admin-header {
  background-color: var(--gcash-blue);
  color: var(--gcash-white);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-radius: 5px;
}

.admin-title {
  font-size: 24px;
  font-weight: bold;
}

.admin-user {
  display: flex;
  align-items: center;
}

.admin-user-name {
  margin-right: 10px;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 18px;
  font-weight: bold;
  color: var(--gcash-blue);
}

.header .logo-text {
  color: var(--gcash-white);
  font-size: 22px;
}

.logo-icon {
  margin-left: 5px;
  color: var(--gcash-blue);
  font-size: 20px;
}

.header .logo-icon {
  font-size: 24px;
}

.gcash-logo {
  display: flex;
  align-items: center;
}

.gcash-logo-icon {
  width: 30px;
  height: 30px;
  background-color: var(--gcash-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gcash-white);
  font-weight: bold;
  margin-right: 10px;
}

.gcash-greeting {
  font-size: 24px;
  font-weight: bold;
  color: var(--gcash-blue);
}

/* Navigation Styles */
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  color: var(--gcash-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Button Styles */
.btn {
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s;
}

.btn-primary {
  background-color: var(--gcash-blue);
  color: var(--gcash-white);
  border: none;
}

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

.btn-outline {
  background-color: transparent;
  color: var(--gcash-white);
  border: 1px solid var(--gcash-white);
  margin-right: 10px;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.form-button {
  width: 100%;
  padding: 15px;
  background-color: var(--gcash-blue);
  color: var(--gcash-white);
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 20px;
}

.form-button:disabled {
  background-color: var(--gcash-gray);
  cursor: not-allowed;
}

.logout-btn {
  background-color: var(--gcash-blue);
  color: var(--gcash-white);
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.action-btn {
  background-color: var(--gcash-white);
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 16px;
  color: var(--gcash-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btn.icon-only {
  width: 40px;
  height: 40px;
  padding: 0;
}

.primary-btn {
  padding: 15px;
  background-color: var(--gcash-blue);
  color: var(--gcash-white);
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  margin-bottom: 15px;
}

.secondary-btn {
  padding: 15px;
  background-color: var(--gcash-white);
  color: var(--gcash-blue);
  border: 1px solid var(--gcash-blue);
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}

.cash-in-btn {
  background-color: var(--gcash-white);
  color: var(--gcash-blue);
  border: 1px solid var(--gcash-blue);
  border-radius: 20px;
  padding: 8px 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.cash-in-btn i {
  margin-right: 5px;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://www.bankofamerica.com/content/images/ContextualSiteGraphics/Images/en_US/Heros/Hero_Checking_Account_Options_A_1976x600.jpg");
  background-size: cover;
  background-position: center;
  color: var(--gcash-white);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section */
.features {
  padding: 60px 0;
  background-color: var(--gcash-light-gray);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2rem;
  color: var(--gcash-blue);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--gcash-white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--gcash-blue);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--gcash-blue);
}

.feature-card p {
  color: var(--gcash-dark-gray);
  line-height: 1.6;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  text-align: center;
  background-color: var(--gcash-white);
}

.cta h2 {
  font-size: 2rem;
  color: var(--gcash-blue);
  margin-bottom: 20px;
}

.cta p {
  color: var(--gcash-dark-gray);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* Footer Styles */
.footer {
  background-color: var(--gcash-blue);
  color: var(--gcash-white);
  padding: 40px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gcash-white);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.social-icons {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.social-icons a {
  color: var(--gcash-white);
  font-size: 1.5rem;
  margin: 0 10px;
}

.gcash-footer {
  padding: 20px;
  text-align: center;
  border-top: 1px solid var(--gcash-border);
  margin-top: 30px;
}

.footer-text {
  font-size: 14px;
  color: var(--gcash-gray);
  margin-bottom: 10px;
}

/* Form Styles */
.login-form,
.signup-form {
  padding: 30px 20px;
}

.form-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: var(--gcash-blue);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--gcash-blue);
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--gcash-border);
  border-radius: 5px;
  font-size: 16px;
}

.form-input:focus {
  outline: none;
  border-color: var(--gcash-blue);
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.form-check-input {
  margin-right: 10px;
  width: 18px;
  height: 18px;
}

.form-check-label {
  font-size: 16px;
}

.form-link {
  display: block;
  text-align: center;
  color: var(--gcash-blue);
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 10px;
}

.form-link:hover {
  text-decoration: underline;
}

.form-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--gcash-border);
  border-radius: 5px;
  font-size: 16px;
  background-color: var(--gcash-white);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23767676' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gcash-gray);
}

.input-with-icon input {
  padding-left: 40px;
}

/* Error Message */
.error-message {
  background-color: #ffebee;
  color: var(--gcash-red);
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  display: none;
}

/* Dashboard Styles */
.profile-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gcash-dark-gray);
  font-size: 20px;
  cursor: pointer;
}

/* Balance Card */
.balance-card {
  background-color: var(--gcash-blue);
  border-radius: 10px;
  padding: 20px;
  color: var(--gcash-white);
  margin: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.balance-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.balance-amount {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.peso-sign {
  font-weight: bold;
}

.account-number-display {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 5px;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 15px;
}

.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.menu-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: var(--gcash-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--gcash-blue);
  font-size: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.menu-label {
  font-size: 12px;
  color: var(--gcash-dark-gray);
}

.menu-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--gcash-red);
  color: var(--gcash-white);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
}

/* Deals Section */
.deals-section {
  padding: 15px;
  margin-top: 20px;
}

.deals-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--gcash-blue);
  margin-bottom: 15px;
}

.deal-card {
  background-color: var(--gcash-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.deal-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* Recent Transactions Section */
.recent-transactions-section {
  padding: 15px;
  margin-top: 20px;
}

.section-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--gcash-blue);
  margin-bottom: 15px;
}

.view-all-link {
  text-align: center;
  margin-top: 15px;
}

.view-all-link a {
  color: var(--gcash-blue);
  text-decoration: none;
  font-weight: bold;
}

/* Recipient Name Display */
.recipient-name {
  margin-top: 10px;
  padding: 10px;
  background-color: var(--gcash-light-gray);
  border-radius: 5px;
  font-weight: bold;
  color: var(--gcash-blue);
  display: none;
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 414px;
  margin: 0 auto;
  height: 60px;
  background-color: var(--gcash-white);
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid var(--gcash-border);
  z-index: 100;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
  width: 20%;
  cursor: pointer;
}

.nav-item.active {
  color: var(--gcash-blue);
}

.nav-item i {
  font-size: 20px;
  margin-bottom: 4px;
}

.nav-text {
  font-size: 12px;
}

.qr-button {
  width: 50px;
  height: 50px;
  background-color: var(--gcash-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gcash-white);
  font-size: 24px;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Content padding for bottom nav */
.gcash-content {
  padding-bottom: 80px;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background-color: var(--gcash-white);
  z-index: 1000;
  transition: left 0.3s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.side-menu.active {
  left: 0;
}

.menu-header {
  background-color: var(--gcash-blue);
  color: var(--gcash-white);
  padding: 20px 15px;
}

.menu-nav {
  padding: 15px 0;
}

.menu-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-nav li {
  padding: 15px 20px;
  border-bottom: 1px solid var(--gcash-border);
}

.menu-nav a {
  color: var(--gcash-dark-gray);
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.menu-nav a i {
  margin-right: 15px;
  width: 20px;
  text-align: center;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.overlay.active {
  display: block;
}

/* Send Money Page */
.send-money-banner {
  background-color: var(--gcash-blue);
  padding: 20px 15px;
  color: var(--gcash-white);
}

.banner-title {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 5px;
}

.banner-subtitle {
  font-size: 16px;
  margin-bottom: 20px;
}

.send-money-form {
  padding: 20px 15px;
}

/* Transaction Code Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--gcash-white);
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  padding: 20px;
}

.modal-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  color: var(--gcash-blue);
}

.modal-message {
  margin-bottom: 15px;
  text-align: center;
}

/* Confirmation Page */
.confirmation-banner {
  background-color: var(--gcash-royal-blue);
  padding: 20px 15px;
  color: var(--gcash-white);
  text-align: center;
}

.confirmation-content {
  padding: 20px 15px;
  text-align: center;
  background-color: var(--gcash-royal-blue);
  color: var(--gcash-white);
  min-height: 100vh;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--gcash-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gcash-white);
  font-size: 40px;
  margin: 0 auto 20px;
}

.confirmation-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.confirmation-message {
  font-size: 16px;
  color: var(--gcash-light-gray);
  margin-bottom: 30px;
}

.receipt-container {
  background-color: var(--gcash-white);
  border-radius: 10px 10px 0 0;
  padding: 20px;
  margin-bottom: 30px;
  text-align: left;
  position: relative;
  color: var(--gcash-dark-gray);
}

.receipt-header {
  text-align: center;
  margin-bottom: 20px;
}

.recipient-name {
  font-size: 24px;
  font-weight: bold;
  color: var(--gcash-blue);
  margin-bottom: 5px;
}

.recipient-number {
  display: inline-block;
  background-color: var(--gcash-light-gray);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 16px;
  margin-bottom: 5px;
}

.receipt-method {
  color: var(--gcash-gray);
  margin-bottom: 20px;
}

.receipt-divider {
  height: 1px;
  background-color: var(--gcash-border);
  margin: 15px 0;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.receipt-label {
  color: var(--gcash-gray);
}

.receipt-value {
  font-weight: bold;
}

.receipt-total {
  font-size: 24px;
  font-weight: bold;
  color: var(--gcash-blue);
}

.receipt-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 14px;
  color: var(--gcash-gray);
}

.receipt-edge {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background-image: repeating-linear-gradient(
    to right,
    var(--gcash-royal-blue) 0px,
    var(--gcash-royal-blue) 10px,
    transparent 10px,
    transparent 20px
  );
}

.countdown {
  margin-top: 20px;
  font-size: 14px;
  color: var(--gcash-light-gray);
}

/* Transactions Page */
.transactions-banner {
  background-color: var(--gcash-blue);
  padding: 20px 15px;
  color: var(--gcash-white);
}

.transactions-content {
  padding: 20px 15px;
}

.filter-section {
  margin-bottom: 20px;
}

.filter-label {
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
  color: var(--gcash-blue);
}

.filter-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--gcash-border);
  border-radius: 5px;
  font-size: 16px;
  background-color: var(--gcash-white);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23767676' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

/* Admin Styles */
.tabs {
  margin-bottom: 20px;
}

.tab-buttons {
  display: flex;
  border-bottom: 1px solid var(--gcash-border);
  margin-bottom: 20px;
}

.tab-btn {
  padding: 10px 20px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-weight: bold;
  color: var(--gcash-gray);
}

.tab-btn.active {
  color: var(--gcash-blue);
  border-bottom-color: var(--gcash-blue);
}

.tab-content {
  display: none;
}

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

.card {
  background-color: var(--gcash-white);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
}

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

.card-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--gcash-blue);
}

.table {
  width: 100%;
  border-collapse: collapse;
}

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

.table th {
  font-weight: bold;
  background-color: var(--gcash-light-gray);
}

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

.status-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.status-active {
  background-color: rgba(38, 166, 91, 0.1);
  color: var(--gcash-green);
}

.status-inactive {
  background-color: rgba(231, 76, 60, 0.1);
  color: var(--gcash-red);
}

.action-btn {
  background: none;
  border: none;
  color: var(--gcash-blue);
  cursor: pointer;
  margin-right: 10px;
  font-size: 16px;
}

.action-btn:hover {
  color: var(--gcash-light-blue);
}

.action-btn.delete {
  color: var(--gcash-red);
}

.message {
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  display: none;
}

.message.success {
  background-color: rgba(38, 166, 91, 0.1);
  border: 1px solid rgba(38, 166, 91, 0.3);
  color: var(--gcash-green);
}

.message.error {
  background-color: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: var(--gcash-red);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .menu-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .menu-label {
    font-size: 11px;
  }
}

/* Transaction Styling - Adding to existing CSS */
.transactions-list {
  margin-top: 15px;
}

.transaction-item {
  background-color: var(--gcash-white);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.transaction-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.transaction-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--gcash-blue);
}

.transaction-item.credit::before {
  background-color: var(--gcash-green);
}

.transaction-item.debit::before {
  background-color: var(--gcash-red);
}

.transaction-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.transaction-icon.credit {
  background-color: rgba(38, 166, 91, 0.1);
  color: var(--gcash-green);
}

.transaction-icon.debit {
  background-color: rgba(231, 76, 60, 0.1);
  color: var(--gcash-red);
}

.transaction-content {
  display: flex;
  align-items: center;
  flex: 1;
}

.transaction-details {
  flex: 1;
}

.transaction-title {
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--gcash-dark-gray);
}

.transaction-date {
  font-size: 12px;
  color: var(--gcash-gray);
}

.transaction-amount {
  font-weight: bold;
  font-size: 16px;
  text-align: right;
}

.transaction-amount.credit {
  color: var(--gcash-green);
}

.transaction-amount.debit {
  color: var(--gcash-red);
}

.no-transactions {
  background-color: var(--gcash-white);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: var(--gcash-gray);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Recent Transactions Section - Additional styling */
.recent-transactions-section {
  background-color: var(--gcash-white);
  border-radius: 10px;
  padding: 20px;
  margin: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.recent-transactions-section .section-title {
  margin-bottom: 20px;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.recent-transactions-section .section-title i {
  margin-right: 10px;
  color: var(--gcash-blue);
}

.view-all-link {
  text-align: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--gcash-border);
}

.view-all-link a {
  display: inline-flex;
  align-items: center;
  color: var(--gcash-blue);
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.view-all-link a i {
  margin-left: 5px;
}
