/* Global Styles */
:root {
  --primary: #7B1E3C;
  --primary-light: #a63959;
  --secondary: #F8F4F2;
  --text-color: #333333;
  --light-gray: #E8E8E8;
  --creampower: #F5EADA  ;
  --dark: #010914;
  --lightcreampower: #FCFAF5;
  --white: #FFFFFF;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --border-radius: 12px;
  --bordercolor:#ECE7E7;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
  font-family: 'Pelak', 'Vazirmatn', 'Tahoma', sans-serif;
}

html, body {
  direction: rtl;
  text-align: right;
  background-color: var(--white);
  color: var(--text-color);
  line-height: 1.6;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: .1rem;
  color: var(--text-color);
  font-family: 'Pelak', 'Vazirmatn', 'Tahoma', sans-serif;
}

h2 {
  font-size: 1.3rem;
}

h3 {
  font-size: 1.1rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: .9rem;
}


a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-light);
}

/* Layout */
.main-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.alert {

  border-radius: var(--border-radius);
}

/* Header */
.site-header {
  background-color: var(--creampower);
  color: var(--white);
  padding: 1rem;
  position: sticky;
 
  z-index: 100;
  /*box-shadow: var(--box-shadow);*/
}

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

.site-title {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  color: var(--primary);
}

.back-button {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.back-button i {
  margin-left: 0.5rem;
}

/* Cards */
.card {
    /*background-color: var(--white);
    
box-shadow: var(--box-shadow);*/
border:1px solid var(--light-gray) !important;
border-radius: var(--border-radius);

border:0;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.card-header {
  padding: 1rem;
  font-weight: 700;
  background-color: var(--white);
  border:0;
}

.card-body {
  padding: 1.2rem;
}

.card-footer {
  background-color: rgba(0, 0, 0, 0.03);
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-title {
  font-size: 1.1rem;
}
.form-check {
  margin-bottom: 2rem;
}

.form-check-label {
  font-size: .8rem;
  
  
}
/* Buttons */
.btn {
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  height: 50px;
  border: none;
  cursor: pointer;
  /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);*/
  text-align: center;
}

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

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-light);
  color: var(--white);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--primary);
  color: var(--white);
}

.btn-block {
  display: block;
  width: 100%;
}

/* Forms */
.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--bordercolor);
  border-radius: var(--border-radius);
  background-color: var(--white);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(123, 30, 60, 0.25);
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

/* SMS Notice Styles */
.sms-notice {
  color: #666;
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
   padding: 0.8rem;
  border-radius: 8px;
 }

/* Address Form Styles */
.address-form-section {
  margin-bottom: 2rem;
}

.input-row {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.input-group.half-width {
  flex: 1;
}

.input-group {
  margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  /*box-shadow: var(--box-shadow);*/
  border: 1px solid var(--light-gray);
  margin-bottom: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.service-card-header {
  background-color: var(--primary);
  color: var(--white);
  padding: 1rem;
  font-weight: 700;
}

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

.service-card-footer {
  background-color: rgba(0, 0, 0, 0.03);
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.125);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-price {
  font-weight: 700;
  color: var(--primary);
}

/* Calendar */
.calendar-container {
  background-color: var(--white);
  border-radius: var(--border-radius);
  /*box-shadow: var(--box-shadow);*/
  /*border: 1px solid var(--light-gray);*/
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.calendar-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 1rem;
}

.calendar-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 5px;
}

.calendar-row.header {
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 10px;
}

.calendar-cell {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}

/* Style for available dates */
.calendar-cell.available {
  background-color: rgba(123, 30, 60, 0.1);
  color: var(--primary);
  font-weight: bold;
  border: 1px solid var(--primary);
}

.calendar-cell.available:hover {
  background-color: rgba(123, 30, 60, 0.2);
  transform: scale(1.05);
}

/* Style for today's date */
.calendar-cell.today {
  background-color: rgba(255, 193, 7, 0.2);
  border: 2px solid var(--warning);
  font-weight: bold;
}

.calendar-cell.today.available {
  background-color: rgba(123, 30, 60, 0.2);
  border: 2px solid var(--primary);
}

/* Style for disabled (past) dates */
.calendar-cell.disabled {
  color: var(--light-gray);
  background-color: #f8f8f8;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Style for empty cells */
.calendar-cell.empty {
  background-color: transparent;
  cursor: default;
}

/* Time Slots */
.timeslot-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.timeslot-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  /*box-shadow: var(--box-shadow);*/
  border: 1px solid var(--light-gray);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.timeslot-card:hover {
  transform: translateY(-3px);
}

.timeslot-card.selected {
  background-color: var(--primary);
  color: var(--white);
}

.specialties-section {display: none;}

/* Specialist Profile */
.specialist-profile {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  /*box-shadow: var(--box-shadow);*/
  border: 1px solid var(--light-gray);
  padding: 1rem;
}

.specialist-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 1rem;
}

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

.specialist-details h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.specialist-skills {
  color: #666;
  font-size: 0.9rem;
  
}


/* Location Map */
.map-container {
  height: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  /*box-shadow: var(--box-shadow);*/
  border: 1px solid var(--light-gray);
}

/* OTP Input */
.otp-container {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 1.5rem;
  direction: ltr;
}

.otp-input {
  width: 3rem;
  height: 3.5rem;
  font-size: 1.5rem;
  text-align: center;
  margin: 0 0.25rem;
  border-radius: 0.5rem;
  direction: ltr;
}

.otp-input:focus {
  border-color: var(--primary);
  outline: none;
}

/* Bottom Sheet */
.bottom-sheet {
  position: fixed;
  text-align: right;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 1.5rem;
  /*box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);*/
  border: 1px solid var(--light-gray);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.bottom-sheet.visible {
  transform: translateY(0);
}

.bottom-sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.bottom-sheet-overlay.visible {
  opacity: 1;
  visibility: visible;
}


/* Confirmation Card */
.confirmation-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--light-gray);

  margin-bottom: 1.5rem;
  overflow: hidden;
 
}

.confirmation-card .card-header {
  background-color: var(--white);
  color: var(--primary);
 /* border-bottom: 1px solid var(--light-gray); */
}

.confirmation-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--light-gray);
}

.confirmation-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.confirmation-label {
  font-weight: 600;
}

/* Status Card */
.status-card {
  text-align: center;
  background-color: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--light-gray);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.status-icon {
  font-size: 3rem;
  color: var(--warning);
  margin-bottom: 1rem;
}

.status-message {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Loader */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}

.loader-overlay.visible {
  visibility: visible;
  opacity: 1;
}

.loader {
  border: 4px solid var(--light-gray);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

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

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
}

.toast {
  background-color: var(--white);
  border-radius: var(--border-radius);
  /*box-shadow: var(--box-shadow);*/
  border: 1px solid var(--light-gray);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  max-width: 400px;
  transform: translateY(-100px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.toast.visible {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  margin-left: 1rem;
  font-size: 1.2rem;
}

.toast-success {
  border-right: 5px solid var(--success);
}

.toast-success .toast-icon {
  color: var(--success);
}

.toast-error {
  border-right: 5px solid var(--danger);
}

.toast-error .toast-icon {
  color: var(--danger);
}

/* Offline Banner */
.offline-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--danger);
  color: var(--white);
  text-align: center;
  padding: 0.5rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 9999;
}

.offline-banner.visible {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .timeslot-container {
    grid-template-columns: 1fr;
  }
  
  .otp-input {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

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

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

.fade-in {
  animation: fadeIn 0.3s ease forwards;
}

.slide-up {
  animation: slideUp 0.3s ease forwards;
}

/* Calendar UI Styles - New Design */
.progress-container {
  background-color: var(--white);
  padding: 24px 24px;
}

.progress {
  height: 8px;
  background-color: #e5e0da;
  margin: 0 auto;
  max-width: 800px;
}

.progress-bar {
  background-color: #7B1E3C;
}

.selected-service-info {
  margin-top: 1rem;
}

.selected-service-info h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
}

.calendar-navigation {
  display: flex;
  justify-content: space-evenly;  
  align-items: center;
  padding: 1rem 0;
}

.navigation-btn {
  background: none;
  border: 1px solid #7B1E3C;
    border-radius: 10px;
    color: #7B1E3C;
    font-size: 1rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.month-title {
  font-size: 1rem;
  margin: 0;
  color: #333;
}

.calendar-days-container {
  margin-bottom: 2rem;
}

.calendar-days {
  display: flex;
  overflow-x: auto;
  padding: 0.5rem 0;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.calendar-days::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.day-item {
  min-width: 80px;
  padding: 0.8rem 0.5rem;
  margin-right: 0.5rem;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  background-color: var(--white);
  color: var(--dark);
  transition: all 0.2s ease;
  border: 1px solid var(--bordercolor);
}


.btn-primary.disabled, .btn-primary:disabled

{
    background-color: var(--primary-light);
}
.day-item.selected {
  background-color: #7B1E3C;
  color: white;
}

.day-item.today {
   border: 1px solid #7B1E3C; 
}

.day-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.day-number {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.day-name {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.day-available-indicator {
  display: block;
  width: 10px;
  height: 10px;
  background-color: #28a745;
  border-radius: 50%;
  margin: 0 auto;
}

.day-item.selected .day-available-indicator {
  background-color: white;
}

.day-item.unavailable .day-available-indicator {
  background-color: #ccc;
}

.time-slots-tabs {
  margin-bottom: 1.5rem;
}

.time-tabs {
  display: flex;
  border-bottom: 1px solid var(--bordercolor);
}

.time-tabs .nav-link {
  flex: 1;
  text-align: center;
  color: #333;
  border: none;
  border-radius: 0;
  padding: 0.75rem;
  font-weight: 600;
}

.time-tabs .nav-link.active {
  color: #7B1E3C;
  background-color: transparent;
  border-bottom: 3px solid #7B1E3C;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 1rem;
}

.time-slot {
  border: 1px solid var(--bordercolor);
  border-radius: 8px;
  padding: 1rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: bold;
  color: #7B1E3C;
}

.time-slot:hover {
  border-color: #7B1E3C;
  box-shadow: 0 2px 8px rgba(123, 30, 60, 0.1);
}

.time-slot.selected {
  background-color: var(--primary-light);
  color:var(--white);
  border-color: var(--primary);
}

.selected-datetime {
  font-size: .9rem;
  
  color: var(--dark);
  padding: .2rem;
  border-radius: var(--border-radius);
}

.no-availability-message {
  width: 100%;
  padding: 2rem;
  text-align: center;
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--danger);
  border-radius: var(--border-radius);
  font-weight: 700;
  margin: 1rem 0;
}

.help-button {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

/* Disabled time slots */
.disabled-slots {
  opacity: 0.6;
  pointer-events: none;
}

.time-slot.disabled {
  background-color: #f0f0f0;
  color: #999;
  cursor: not-allowed;
  pointer-events: none;
}

/* Selected datetime title */
.selected-datetime-title {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.selected-datetime-container {
  padding: 1rem;
  border-radius: var(--border-radius);
}

/* Booking Page New Design */
.booking-page {
  background-color: var(--white);
}

.professional-profile-header {
  background-color: var(--primary);
  color: var(--white);
  padding: 2rem 1rem;
  text-align: center;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

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

.profile-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.specialties-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  margin-left: 8px;
}

.specialties-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.specialties-list {
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.booking-container {
  padding: 2rem 1rem;
}



.booking-subtitle {
  font-size: 1rem;
  color: #666666;
}

.services-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--light-gray);
  padding: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.service-card .service-name {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.service-card .service-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}



.service-card .service-location, .service-card .service-duration {
  display: flex;
  align-items: center;
  margin-bottom: .5rem;
  color: var(--dark);

}

.service-card .service-location i,
.service-card .service-duration i {
  margin-left: 0.5rem;
  color: var(--primary);
}

.service-card .book-service-btn {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  background-color: #f5efe9;
  color: var(--primary);
  border: none;
  border-radius: 30px;
  padding: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-card .book-service-btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Service card media queries for responsive layouts */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* OTP Verification Styles */
.otp-input-group {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0;
}

.otp-input {
  width: 3rem;
  height: 3.5rem;
  font-size: 1.5rem;
  text-align: center;
  margin: 0 0.25rem;
  border-radius: 0.5rem;
}

#phone-display {
  font-weight: bold;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* Booking History Styles */
.booking-section {
  margin-bottom: 1.5rem;
}

.booking-section-title {
  padding: 0.75rem 1rem;
  background-color: #f8f9fa;
  font-weight: bold;
  border-bottom: 1px solid #dee2e6;
}

.booking-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
  transition: background-color 0.2s;
  cursor: pointer;
}

.booking-item:hover {
  background-color: #f8f9fa;
}

.booking-content {
  flex: 1;
}

.booking-service-name {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.booking-specialist, 
.booking-datetime, 
.booking-price {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 0.25rem;
}

.booking-status {
  padding: 0.35rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  margin-right: 0.5rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.booking-status i {
  margin-left: 0.5rem;
}

.booking-status-pending .booking-status {
  color: #856404;
  background-color: #fff3cd;
}

.booking-status-confirmed .booking-status {
  color: #155724;
  background-color: #d4edda;
}

.booking-status-canceled .booking-status {
  color: #721c24;
  background-color: #f8d7da;
}

.booking-status-completed .booking-status {
  color: #0c5460;
  background-color: #d1ecf1;
}

/* Booking history button */
.bookings-button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  margin-left: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.bookings-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
} 