/* ====================================
   SPORT NEXUS CUSTOM STYLES
   Custom styles for conditional validation and registration form
   ====================================*/

/* ====================================
   CONDITIONAL VALIDATION STYLES BY ROLE
   ====================================*/

/* Form validation error states */
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545 !important;
  background: #fff5f5 !important;
  box-shadow: 0 0 0 0.1rem rgba(220, 53, 69, 0.25) !important;
  transition: all 0.3s ease;
}

/* .form-control.is-valid,
.form-select.is-valid {
  border-color: #28a745 !important;
  background: #f8fff8 !important;
  box-shadow: 0 0 0 0.1rem rgba(40, 167, 69, 0.25) !important;
  transition: all 0.3s ease;
} */

/* Select2 validation styles */
.select2-container .select2-selection.is-invalid {
  border-color: #dc3545 !important;
  background: #fff5f5 !important;
  box-shadow: 0 0 0 0.1rem rgba(220, 53, 69, 0.25) !important;
}

/* .select2-container .select2-selection.is-valid {
  border-color: #28a745 !important;
  background: #f8fff8 !important;
  box-shadow: 0 0 0 0.1rem rgba(40, 167, 69, 0.25) !important;
} */

/* Invalid feedback styling */
.invalid-feedback {
  display: block !important;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc3545;
  font-weight: 500;
  line-height: 1.4;
}

/* Valid feedback styling */
/* .valid-feedback {
  display: block !important;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #28a745;
  font-weight: 500;
  line-height: 1.4;
} */

/* Radio group validation */
.radio-group+.invalid-feedback {
  margin-top: 0.5rem;
  text-align: center;
  font-weight: 600;
}

/* Email field validation  newly changed*/
.account-email-fld .invalid-feedback {
  margin-top: 0.25rem;
}

.account-email-fld .form-control.is-invalid {
  border-radius: 8px !important;
  padding-right: 90px;
}

.account-email-fld .form-control {
  border-radius: 8px !important;
  padding-right: 90px;
}

/* Custom validation tooltip */
.validation-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Show validation tooltips on focus */
.form-control.is-invalid:focus+.validation-tooltip {
  display: block;
}

/* Role-specific field highlighting */
.profile-type-fields.validation-active {
  border-left: 3px solid #3949A6;
  padding-left: 15px;
  margin-left: 5px;
  background: rgba(57, 73, 166, 0.02);
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}

/* Loading state for validation */
.validating {
  position: relative;
}

.validating::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #3949A6;
  border-radius: 50%;
  animation: validationSpin 1s linear infinite;
}

@keyframes validationSpin {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }

  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Success states */
/* .validation-success {
  color: #28a745;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  font-weight: 500;
} */

/* Role indicator badges */
.role-validation-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.375rem;
  margin-left: 0.5rem;
  text-transform: uppercase;
}

.role-validation-badge.athlete {
  color: #fff;
  background-color: #17a2b8;
}

.role-validation-badge.team {
  color: #fff;
  background-color: #28a745;
}

.role-validation-badge.sponsor {
  color: #212529;
  background-color: #ffc107;
}

.role-validation-badge.fan {
  color: #fff;
  background-color: #6f42c1;
}

/* Field error highlighting */
.field-error-highlight {
  position: relative;
}

.field-error-highlight::before {
  content: '!';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #dc3545;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  z-index: 2;
}

/* Field success highlighting */
.field-success-highlight {
  position: relative;
}

/* .field-success-highlight::before {
  content: '✓';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #28a745;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  z-index: 2;
} */

/* Multiple select validation */
.athlete-sport-multiple.is-invalid+.select2-container {
  border: 1px solid #dc3545 !important;
  border-radius: 8px;
}

/* .athlete-sport-multiple.is-valid + .select2-container {
  border: 1px solid #28a745 !important;
  border-radius: 8px;
} */

/* Password strength indicator */
.password-strength {
  margin-top: 0.25rem;
  height: 4px;
  border-radius: 2px;
  background: #e9ecef;
  overflow: hidden;
}

.password-strength-bar {
  height: 100%;
  transition: all 0.3s ease;
}

.password-strength-weak {
  background: #dc3545;
  width: 25%;
}

.password-strength-fair {
  background: #ffc107;
  width: 50%;
}

.password-strength-good {
  background: #17a2b8;
  width: 75%;
}

/* .password-strength-strong { background: #28a745; width: 100%; } */

/* Form section headers with validation status */
.account-sub-title h3 {
  position: relative;
}

.account-sub-title.has-errors h3::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background: #dc3545;
  border-radius: 50%;
  animation: errorPulse 1.5s infinite;
}

/* .account-sub-title.all-valid h3::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background: #28a745;
  border-radius: 50%;
} */

@keyframes errorPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}
/*-----------------------------------------02-01-2026 starts---------------------------*/
.main-content{
  max-width: none !important;
}
.grid-view-container .grid .card,
.grid-view-container .grid .card .card-img-banner img{
  transition: all 0.3s;
}
.grid-view-container .grid .card:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.grid-view-container .grid .card:hover .card-img-banner img {
    transform: scale(1.05);
}
.amount-input,
.amount-input:hover{
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
         appearance: textfield;
}
.amount-input::-webkit-outer-spin-button,
.amount-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.amount-input[type=number] {
  -moz-appearance: textfield;
}
.account-form-row .select2-container--default.select2-container--focus .select2-selection--multiplem
.account-form-row .select2-container--default .select2-selection--multiple,
.account-form-row .select2-container--default.select2-container--focus .select2-selection--multiple,
.profile-type-fields .select2-container--default .select2-selection--multiple{
    box-shadow: none !important;
    border: 1px solid #C6E1FD !important;
}
.profile-type-fields .select2-container--default .select2-selection--multiple{
  padding: 0 !important;
}
.profile-type-fields .select-h-43 .select2-container--default .select2-selection--multiple .select2-selection__rendered{
  padding: 6px 8px !important;
}
.account-form-row .select2-container--default.select2-container--focus .select2-selection--multiple{
  padding: 0 !important;
}
.radio-label input[type="radio"]:checked + i + .radio-card{
  border: 1px solid #fd9421 !important;
}
.file-progress{
  max-width: none !important;
  margin-top: 6px;
}
.progress-bar{
  border: none !important;
  height: 6px !important;
}
.file-item .file-details{
  flex-direction: row !important;
  align-items: flex-start;
  gap: 8px;
}
.file-item .file-details .file-icon{
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAxOCAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjc1IDAuNzVWNC43NUMxMC43NSA1LjI4MDQzIDEwLjk2MDcgNS43ODkxNCAxMS4zMzU4IDYuMTY0MjFDMTEuNzEwOSA2LjUzOTI5IDEyLjIxOTYgNi43NSAxMi43NSA2Ljc1SDE2Ljc1TTYuNzUgNy43NUg0Ljc1TTEyLjc1IDExLjc1SDQuNzVNMTIuNzUgMTUuNzVINC43NU0xMS43NSAwLjc1SDIuNzVDMi4yMTk1NyAwLjc1IDEuNzEwODYgMC45NjA3MTQgMS4zMzU3OSAxLjMzNTc5QzAuOTYwNzE0IDEuNzEwODYgMC43NSAyLjIxOTU3IDAuNzUgMi43NVYxOC43NUMwLjc1IDE5LjI4MDQgMC45NjA3MTQgMTkuNzg5MSAxLjMzNTc5IDIwLjE2NDJDMS43MTA4NiAyMC41MzkzIDIuMjE5NTcgMjAuNzUgMi43NSAyMC43NUgxNC43NUMxNS4yODA0IDIwLjc1IDE1Ljc4OTEgMjAuNTM5MyAxNi4xNjQyIDIwLjE2NDJDMTYuNTM5MyAxOS43ODkxIDE2Ljc1IDE5LjI4MDQgMTYuNzUgMTguNzVWNS43NUwxMS43NSAwLjc1WiIgc3Ryb2tlPSIjNTU1NTU1IiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);
  width: 16px;
  height: 20px;
  background-size: contain;
  display: block;
  margin-top: 3px;
}
.file-item .file-delete-btn{
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMCAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2Ljc1IDQuNzVWMTguNzVDMTYuNzUgMTkuMjgwNCAxNi41MzkzIDE5Ljc4OTEgMTYuMTY0MiAyMC4xNjQyQzE1Ljc4OTEgMjAuNTM5MyAxNS4yODA0IDIwLjc1IDE0Ljc1IDIwLjc1SDQuNzVDNC4yMTk1NyAyMC43NSAzLjcxMDg2IDIwLjUzOTMgMy4zMzU3OSAyMC4xNjQyQzIuOTYwNzEgMTkuNzg5MSAyLjc1IDE5LjI4MDQgMi43NSAxOC43NVY0Ljc1TTAuNzUgNC43NUgxOC43NU01Ljc1IDQuNzVWMi43NUM1Ljc1IDIuMjE5NTcgNS45NjA3MSAxLjcxMDg2IDYuMzM1NzkgMS4zMzU3OUM2LjcxMDg2IDAuOTYwNzE0IDcuMjE5NTcgMC43NSA3Ljc1IDAuNzVIMTEuNzVDMTIuMjgwNCAwLjc1IDEyLjc4OTEgMC45NjA3MTQgMTMuMTY0MiAxLjMzNTc5QzEzLjUzOTMgMS43MTA4NiAxMy43NSAyLjIxOTU3IDEzLjc1IDIuNzVWNC43NSIgc3Ryb2tlPSIjNTU1NTU1IiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);
  width: 18px;
  height: 20px;
  background-size: contain;
  display: block; 
}
.file-item .file-details .file-icon svg,
.file-item .file-delete-btn svg{
  display: none !important;
}
.upload-image-panel .file-info{
  flex: none !important;
}
.file-item .file-info{
  align-items: flex-start !important;
  gap: 1px !important;
}
#password_confirmation-error{
  position: absolute;
  bottom: -25px;
  left: 0;
}
.row.account-form-row .col-sm-6 .mb-3{
  position: relative;
}
.campaign-modal-step .light-blue-bg{
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}
.campaign-modal-step .form-group{
  margin-bottom: 16px !important;
}
.form-actions{
  justify-content: flex-end !important;
}
.campaign-modal-step .form-section{
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.campaign-modal-step .radio-group{
  margin-top: 2px;
  padding: 0 !important;
}
#campaignBasicsForm .select2-container--default .select2-selection--single .select2-selection__arrow{
  height: 47px !important;
}
#campaignBasicsForm .select2-container .select2-selection--single {
    height: 47px !important;
}
#cryptoWalletSection, #authorizeNetSection {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}
.allocation-input-wrapper input{
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
         appearance: textfield;
}
.allocation-input-wrapper input::-webkit-outer-spin-button,
.allocation-input-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.allocation-input-wrapper input {
  -webkit-appearance: none;
  margin: 0;
}
.allocation-input-wrapper input {
  -moz-appearance: textfield;
}
.main-navbar {
  z-index: 99 !important;
}
/*-----------------------------------------02-01-2026 ends---------------------------*/

/* Responsive validation styles */
@media (max-width: 768px) {
  .invalid-feedback {
    font-size: 0.8rem;
  }

  .profile-type-fields.validation-active {
    margin-left: 0;
    padding-left: 10px;
    border-left: 2px solid #3949A6;
  }

  .role-validation-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }

  .field-error-highlight::before,
  .field-success-highlight::before {
    width: 18px;
    height: 18px;
    font-size: 10px;
    right: 8px;
  }
}

@media (max-width: 576px) {
  .validation-tooltip {
    position: relative;
    display: block !important;
    margin-top: 0.5rem;
    background-color: #dc3545;
    color: #fff;
    padding: 0.5rem;
    border-radius: 4px;
  }

  .profile-type-fields.validation-active {
    background: rgba(57, 73, 166, 0.05);
  }
}

/* Focus states for better UX */
.form-control:focus,
.form-select:focus {
  border-color: #3949A6 !important;
  box-shadow: 0 0 0 0.1rem rgba(57, 73, 166, 0.25) !important;
}

/* Custom radio validation */
.radio-group {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px;
  transition: all 0.3s ease;
}

.radio-group.is-invalid {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.05);
}

/* .radio-group.is-valid {
  border-color: #28a745;
  background: rgba(40, 167, 69, 0.05);
} */

/* Validation summary */
.validation-summary {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

.validation-summary.has-errors {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #721c24;
}

/* .validation-summary.all-valid {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #155724;
} */

.validation-summary-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.validation-summary-list {
  margin: 0;
  padding-left: 1.2rem;
}

.validation-summary-list li {
  margin-bottom: 0.25rem;
}

/* ====================================
   AUTOCOMPLETE STYLES
   ====================================*/

/* Autocomplete dropdown container */
.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1050;
  max-height: 300px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-top: none;
  border-radius: 0 0 0.375rem 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  display: none;
}

.autocomplete-dropdown.show {
  display: block;
}

/* Autocomplete items */
.autocomplete-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f8f9fa;
  transition: background-color 0.2s ease;
}

.autocomplete-item:hover,
.autocomplete-item.highlighted {
  background-color: #f8f9fa;
}

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

/* City autocomplete specific styles */
.city-info {
  display: flex;
  flex-direction: column;
}

.city-name {
  font-weight: 600;
  color: #212529;
}

.city-location {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 0.125rem;
}

/* User autocomplete specific styles */
.user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-avatar {
  flex-shrink: 0;
}

.avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #dee2e6;
}

.avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #007bff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
}

.user-details {
  flex: 1;
}

.user-name {
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.125rem;
}

.user-role {
  font-size: 0.8rem;
  color: #6c757d;
  text-transform: uppercase;
  font-weight: 500;
}

/* Loading, error, and no results states */
.loading-state,
.no-results,
.error-state {
  padding: 1rem;
  text-align: center;
  color: #6c757d;
  font-style: italic;
}

.error-state {
  color: #dc3545;
}

/* Responsive autocomplete */
@media (max-width: 576px) {
  .user-info {
    gap: 0.5rem;
  }

  .avatar-img,
  .avatar-placeholder {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .autocomplete-item {
    padding: 0.5rem 0.75rem;
  }
}

/* ====================================
   AUTOCOMPLETE DROPDOWN STYLES
   ====================================*/

/* Autocomplete dropdown container */
.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1050;
  max-height: 300px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-top: none;
  border-radius: 0 0 0.375rem 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  display: none;
}

.autocomplete-dropdown.show {
  display: block;
  animation: fadeInDown 0.3s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Autocomplete items */
.autocomplete-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f8f9fa;
  transition: all 0.2s ease;
}

.autocomplete-item:hover,
.autocomplete-item.highlighted {
  background-color: #f8f9fa;
  border-left: 3px solid #007bff;
}

.autocomplete-item:last-child {
  border-bottom: none;
  border-radius: 0 0 0.375rem 0.375rem;
}

/* City autocomplete specific */
.city-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.city-name {
  font-weight: 600;
  color: #212529;
  font-size: 0.95rem;
}

.city-location {
  font-size: 0.85rem;
  color: #6c757d;
  font-style: italic;
}

/* User/Fan favorites autocomplete specific */
.user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e9ecef;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #6610f2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.user-details {
  flex: 1;
  min-width: 0;
}

.user-name {
  font-weight: 600;
  color: #212529;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.user-role {
  font-size: 0.8rem;
  color: #6c757d;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* State messages */
.loading-state,
.no-results,
.error-state {
  padding: 1rem;
  text-align: center;
  color: #6c757d;
  font-style: italic;
}

.loading-state {
  background: #f8f9fa;
}

.no-results {
  color: #998a8a;
}

.error-state {
  color: #dc3545;
  background: #fff5f5;
}

.select2-container .select2-selection.is-invalid {
  border-color: #dc3545 !important;
}

.select2-container--default .select2-selection--multiple.is-invalid {
  border-color: #dc3545 !important;
}

/* Custom styling for Select2 with Bootstrap */
.select2-container--default .select2-selection--multiple {
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  min-height: 38px;
  cursor: text;
}

/* Fix cursor alignment in Select2 multiple selection - specifically for athlete sports */
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  padding: 2px 8px !important;
  line-height: 1.5 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin: 2px 4px 2px 0 !important;
  /* padding: 2px 8px !important; */
  padding: 0px 8px 0 22px !important;

  line-height: 1.5 !important;
  display: inline-flex !important;
  align-items: center !important;
}

.select2-container--default .select2-search--inline {
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: middle !important;
  margin: 0 !important;
  padding: 0 !important;
  min-width: 20px !important;
  height: auto !important;
}

.select2-container--default .select2-search--inline .select2-search__field {
  cursor: text !important;
  margin-top: 0 !important;
  padding: 2px 4px !important;
  vertical-align: middle !important;
  line-height: 1.5 !important;
  height: auto !important;
  min-height: 20px !important;
  position: relative !important;
  top: 0 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Specific fix for athlete sports multiple select - override bottom positioning */
.select-h-43 .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  min-height: 39px !important;
  padding: 4px 8px !important;
}

.select-h-43 .select2-container--default .select2-search--inline {
  display: inline-flex !important;
  align-items: center !important;
  height: auto !important;
  vertical-align: middle !important;
}

.select-h-43 .select2-container--default .select2-search--inline .select2-search__field {
  margin: 0 !important;
  padding: 0 4px !important;
  vertical-align: middle !important;
  line-height: 1.5 !important;
  height: 24px !important;
  position: relative !important;
  bottom: 0 !important;
  top: 0 !important;
}

/* Override the bottom: 18px from styles.css that's causing cursor misplacement */
.athlete-sport-multiple + .select2-container .select2-search--inline .select2-search__field,
.select-h-43 .select2-container--default .select2-search--inline .select2-search__field {
  bottom: 0 !important;
  top: 7px !important;
  position: relative !important;
}

/* Legal Agreements checkbox alignment fix */
.create-account-section .legal-agreements-panel .optional-box {
  display: flex !important;
  padding: 34px 28px !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 10px !important;
  align-self: stretch !important;
  border-radius: 10px !important;
}

.create-account-section .legal-agreements-panel .checkbox-label {
  display: flex !important;
  align-items: flex-start !important;
}

.create-account-section .legal-agreements-panel .checkbox-label input[type=checkbox] {
  margin-right: 15px !important;
  margin-top: 2px !important;
  flex-shrink: 0 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
  border-radius: 4px;
  padding: 2px 8px;
  margin: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #fff;
  margin-right: 5px;
}

/* Upload functionality styles */
.upload-image-drop-zone {
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.upload-image-drop-zone:hover {
  border-color: #007bff;
  background-color: #f8f9fa;
}

.upload-image-drop-zone.drag-over {
  border-color: #007bff;
  background-color: #e7f3ff;
}

.upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.upload-image-icon {
  margin-bottom: 10px;
}

.upload-link {
  color: #007bff;
  text-decoration: none;
}

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

.upload-preview {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upload-preview img {
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Existing Profile Image Container */
.existing-profile-image-container {
  margin-top: 20px;
  text-align: center;
}

.existing-profile-image-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 300px;
}

.existing-profile-image {
  display: block;
  max-width: 100%;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.delete-profile-image-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.9);
  border: 2px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.delete-profile-image-btn:hover {
  background: rgba(220, 38, 38, 1);
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.delete-profile-image-btn svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 2.5;
}

.existing-image-label {
  margin-top: 10px;
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

/* Existing Document Container */
.existing-document-container {
  margin-top: 20px;
  text-align: center;
}

.existing-document-label {
  margin-bottom: 12px;
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
  text-align: left;
}

/* Existing Document Image Wrapper (for images) */
.existing-document-image-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

.existing-document-image {
  display: block;
  max-width: 100%;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.download-document-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(59, 130, 246, 0.9);
  border: 2px solid #fff;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.download-document-btn:hover {
  background: rgba(37, 99, 235, 1);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  color: #fff;
  text-decoration: none;
}

.download-document-btn svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 2.5;
}

/* Existing Document File Wrapper (for non-images like PDF) */
.existing-document-file-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.document-file-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.document-file-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  color: #ef4444;
  flex-shrink: 0;
}

.document-file-icon svg {
  width: 32px;
  height: 32px;
}

.document-file-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.document-file-name {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  word-break: break-word;
}

.document-file-type {
  font-size: 12px;
  color: #6b7280;
}

.download-document-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #3b82f6;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.download-document-link:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
  color: #fff;
  text-decoration: none;
}

.download-document-link svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2.5;
}

.upload-file-info {
  margin-top: 15px;
  background: #f8f9fa;
  border-radius: 6px;
  padding: 15px;
}

.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.file-details {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.file-icon {
  color: #007bff;
}

.file-info {
  display: flex;
  flex-direction: column;
}

.file-name {
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.file-size {
  font-size: 12px;
  color: #666;
}

.file-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.progress-bar {
  background: #e9ecef;
  border-radius: 10px;
  height: 6px;
  flex: 1;
  overflow: hidden;
}

.progress-fill {
  background: #007bff;
  height: 10px !important;
  border-radius: 10px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 12px;
  font-weight: 500;
  color: #007bff;
  min-width: 35px;
}

.file-delete-btn {
  background: none;
  border: none;
  color: #dc3545;
  padding: 4px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.file-delete-btn:hover {
  background-color: #f8d7da;
}

/* Cropper modal styles */
.crop-container {
  max-height: 400px;
  overflow: hidden;
}

#crop-image {
  display: block;
  max-width: 100%;
}

/* City Autocomplete styles */
.autocomplete-container {
  position: relative;
}

/* Email Verify Button States */
.verify-email-btn {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

/* Clear Search Button */
.clear-search-btn {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all 0.2s ease;
  z-index: 10;
}

.clear-search-btn:hover {
  color: #ef4444;
  background-color: #fee2e2;
  border-radius: 50%;
}

.clear-search-btn svg {
  width: 16px;
  height: 16px;
}

.verify-email-btn[data-status="unverified"] {
  background-color: #007bff;
  color: white;
}

.verify-email-btn[data-status="verifying"] {
  background-color: #ffc107;
  color: #000;
  cursor: wait;
  pointer-events: none;
}

.verify-email-btn[data-status="verified"] {
  background-color: #28a745;
  color: white;
  pointer-events: none;
}

.verify-email-btn[data-status="taken"] {
  background-color: #dc3545;
  color: white;
  pointer-events: none;
}

.verify-email-btn[data-status="invalid"] {
  background-color: #6c757d;
  color: white;
  pointer-events: none;
}

.verify-email-btn .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Spinning animation for verifying state */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.verify-email-btn[data-status="verifying"] .btn-icon::before {
  content: "⟳";
  animation: spin 1s linear infinite;
  display: inline-block;
}

.verify-email-btn[data-status="verified"] .btn-icon::before {
  content: "✓";
}

.verify-email-btn[data-status="taken"] .btn-icon::before {
  content: "✗";
}

.verify-email-btn[data-status="invalid"] .btn-icon::before {
  content: "!";
}

.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.autocomplete-item {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #f5f5f5;
  transition: background-color 0.2s;
}

.autocomplete-item:hover,
.autocomplete-item.highlighted {
  background-color: #f8f9fa;
}

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

.city-info {
  display: flex;
  flex-direction: column;
}

.city-name {
  font-weight: 500;
  color: #333;
}

.city-location {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

.no-results {
  padding: 10px 15px;
  color: #666;
  font-style: italic;
  text-align: center;
}

.loading-results {
  padding: 10px 15px;
  color: #007bff;
  text-align: center;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {

  outline: 0;
  padding: 8px 15px 19px 15px !important;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 7px;
  border: 1px solid #ADADAD !important;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1) !important;
}


/* Date picker styles */

/* Date Picker Styling */
.date-input-wrapper {
  position: relative;
  width: 100%;
}

.date-input-wrapper .form-control {
  padding-right: 45px;
  cursor: pointer;
}

.date-input-wrapper .calendar-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.date-input-wrapper .calendar-icon svg {
  width: 18px;
  height: 18px;
}

/* Flatpickr custom styling */
.flatpickr-calendar {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.flatpickr-day.selected {
  background: #080808 !important;
  border-color: #010101 !important;
}

.flatpickr-day.today {
  border-color: #080808;
}

.flatpickr-day:hover {
  background: #e8f0fe;
}



/* Progress Bar Styling */
.file-progress {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.progress-bar {
  flex: 1;
  height: 8px;
  background-color: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 10px !important;
  background: linear-gradient(90deg, #4CAF50 0%, #45a049 100%);
  transition: width 0.3s ease;
  border-radius: 10px;
}

.progress-text {
  font-size: 14px;
  font-weight: 600;
  color: #2063E4;
  min-width: 45px;
  text-align: right;
}

.account-progress-bar .progress-fill {
  height: 10px !important;
  background: linear-gradient(to right, #1d4ed8, #22c55e);
}

.account-progress-bar .progress-fill-orange {
  height: 10px !important;
  background: linear-gradient(to right, #4700FF, #FF972B);
}
.profile-campaign .campaign-header{ margin-bottom: 15px; padding: 0 !important;}
.profile-campaign .campaign-title{font-size: 15px !important;}
/* ====================================
   CAMPAIGNS PAGE STYLES
   ====================================*/

/* Breadcrumbs */
.campaigns-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.campaigns-breadcrumbs a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.campaigns-breadcrumbs a:hover {
  color: #3b82f6;
}

.breadcrumb-separator {
  color: #9ca3af;
}

.breadcrumb-current {
  color: #1a1a1a;
  font-weight: 500;
}

/* Top Bar with Title and Buttons */
.campaigns-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 1.5rem;
}

.campaigns-top-bar-left {
  flex: 1;
}

.campaigns-main-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.campaigns-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.campaigns-top-bar-right {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}

.btn-view-nfts {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  background: #FF972B;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-view-nfts:hover {
  background: #e67e1f;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(255, 151, 43, 0.3);
}

.btn-create-campaign {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: #3b82f6;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-create-campaign:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.btn-icon {
  width: 16px;
  height: 16px;
}

/* Summary Statistics - Using dashboard styles */
.campaigns-page .stats {
  margin-top: 0;
  margin-bottom: 2rem;
}

/* Stat card layout for campaigns page */
.stats .stat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 16px 18px !important;
}

.stat-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.4rem;
}

.stats .stat-value {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #1a1a1a;
  flex: 1;
}

.stats .stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
}

.stats .stat-icon i {
  width: 18px;
  height: 18px;
}

.stats .stat-label {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  margin-bottom: 0.4rem;
}

/* Stat subtext for campaigns page */
.stat-subtext {
  font-size: 0.7rem;
  font-weight: 500;
  margin-top: auto;
}

.stat-subtext-green {
  color: #10b981;
}

.stat-subtext-purple {
  color: #3949A6;
}

.stat-subtext-orange {
  color: #f97316;
}

.stat-subtext-red {
  color: #d97706;
}

/* Stat Card Colors with Gradients */
/* Green card - Total Raised */
.green {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 50%, #a7ffdc 100%);
  border: none;
}

.green .stat-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Light Blue card - Active Campaigns */
.purple {
  background: linear-gradient(135deg, #eadbfe 0%, #deccf5 50%, #c6afe3 100%);
  border: none;
}

.purple .stat-icon {
  background: linear-gradient(135deg, #7a3bf6 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Blue card - Active Sponsors */
.blue {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #b6d5f7 100%);
  border: none;
}

.blue .stat-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Pink card - NFTs Sold */
.orange {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 50%, #fecee8 100%);
  border: none;
}

.orange .stat-icon {
  background: linear-gradient(135deg, #e76ba9 0%, #db2777 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

/* Yellow card - Pending Withdrawals */
.red {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #ffe387 100%);
  border: none;
}

.red .stat-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Main Content Grid */
.campaigns-main-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 1.5rem;
}

.campaigns-left-column,
.campaigns-right-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Campaign Management Card */
.campaign-management-card {
  background: #fff;
  border-radius: 15px;
  padding: 24px;
  border: none;
  box-shadow: none;
}

/* Campaign Action Buttons */
.campaign-action-buttons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.campaign-action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.2s;
}

.campaign-action-btn:hover {
  background: #f9fafb;
  color: #3b82f6;
  border-color: #3b82f6;
}

.campaign-action-btn-active {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.campaign-action-btn-active:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
  color: #ffffff;
}

.campaign-action-btn .btn-icon {
  width: 16px;
  height: 16px;
}

/* Campaign Table */
.campaign-table-wrapper {
  overflow-x: auto;
}

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

.campaign-table thead {
  background: #f9fafb;
}

.campaign-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #e5e7eb;
}

.campaign-table td {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.875rem;
  color: #1a1a1a;
}

.campaign-table tbody tr:hover {
  background: #f9fafb;
}

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

/* Campaign Name Cell */
.campaign-name-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.campaign-name-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-width: 0; /* Allow text to truncate */
}

.campaign-name-main {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}

.campaign-name-subtitle {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.4;
}

.campaign-icon {
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.campaign-icon svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

/* Campaign Image in Table */
.campaign-name-cell .campaign-image {
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.campaign-icon-blue {
  background: #3b82f6;
}

.campaign-icon-purple {
  background: #3949A6;
}

.campaign-icon-green {
  background: #10b981;
}

/* Raised Cell */
.raised-cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 150px;
}

.raised-amount {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
}

.progress-bar-campaign {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
}

.progress-fill-campaign {
  height: 100%;
  border-radius: 0.5rem;
  transition: width 0.3s ease;
}

.progress-fill-blue {
  background: #3b82f6;
}

.progress-fill-purple {
  background: #3949A6;
}

.progress-fill-green {
  background: #10b981;
}

/* Status Dot */
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.status-dot-active {
  background: #10b981;
}

.status-dot-pending {
  background: #f59e0b;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.action-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.action-btn svg {
  width: 16px;
  height: 16px;
}

.action-btn-view {
  color: #3b82f6;
}

.action-btn-view:hover {
  background: #dbeafe;
}

.action-btn-edit {
  color: #3949A6;
}

.action-btn-edit:hover {
  background: #ede9fe;
}

.action-btn-delete {
  color: #ef4444;
}

.action-btn-delete:hover {
  background: #fee2e2;
}

/* Recent Activity Card */
.recent-activity-card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
  /* border: 1px solid #e5e7eb; */
}

.activity-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.5rem 0;
}

.activity-list {
  display: flex;
  flex-direction: 
  column; gap: 0 !important;
}

.activity-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  /* background: #f9fafb;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb; */
  transition: background 0.2s;
}

.activity-item:hover {
  background: #f3f4f6;
}

.activity-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.activity-icon {
  width: 20px;
  height: 20px;
  color: #ffffff;
}

.activity-icon-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.activity-icon-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.activity-icon-orange {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.activity-icon-purple {
  background: linear-gradient(135deg, #3949A6 0%, #7c3aed 100%);
}

.activity-content {
  flex: 1;
}

.activity-text {
  font-size: 0.875rem;
  /* font-weight: 600; */
  color: #1a1a1a;
  margin-bottom: 0.15rem;
  line-height: 1;
}

.activity-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.activity-time{margin-top: 0;}

.activity-amount {
  font-weight: 600;
  color: #1a1a1a;
}

.activity-separator {
  color: #C6E1FD;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .campaigns-main-grid {
    grid-template-columns: 1fr;
  }

  .campaigns-right-column {
    order: -1;
  }

  .campaigns-top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .campaigns-top-bar-right {
    width: 100%;
    justify-content: flex-start;
  }

  .campaigns-listing-section .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filters-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stats {
    flex-direction: column;
  }

  .stat-card {
    width: 100%;
  }

  .campaign-action-buttons {
    flex-direction: column;
    width: 100%;
  }

  .campaign-action-btn {
    width: 100%;
    justify-content: center;
  }

  .campaign-table {
    font-size: 0.75rem;
  }

  .campaign-table th,
  .campaign-table td {
    padding: 0.5rem;
  }

  .action-buttons {
    flex-direction: column;
    gap: 0.25rem;
  }

  .campaigns-top-bar-right {
    flex-direction: column;
    width: 100%;
  }

  .btn-view-nfts,
  .btn-create-campaign {
    width: 100%;
    justify-content: center;
  }

  .campaigns-listing-section .grid {
    grid-template-columns: 1fr;
  }

  .campaign-actions-inline,
  .campaign-card-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .btn-view-campaign-inline,
  .btn-contribute-inline {
    width: 100%;
    text-align: center;
  }

  .campaign-author-overlay {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem;
  }

  .campaign-author-info {
    margin-top: 0.25rem;
  }
}

@media (max-width: 640px) {
  .campaign-table-wrapper {
    overflow-x: scroll;
  }

  .campaign-table {
    min-width: 800px;
  }

  .campaigns-main-title {
    font-size: 1.5rem;
  }

  .campaigns-subtitle {
    font-size: 0.875rem;
  }
}

/* ====================================
   CREATE CAMPAIGN MODAL STYLES
   ====================================*/

/* Modal Overlay */
.campaign-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
  overflow-y: auto;
}

.campaign-modal-overlay.active {
  display: flex;
}

/* Modal Container */
.campaign-modal {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 12px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

/* Modal Header */
.campaign-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  z-index: 10;
  border-radius: 12px 12px 0 0;
}

.campaign-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.campaign-modal-close {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.2s;
}

.campaign-modal-close:hover {
  background: #f3f4f6;
}

.campaign-modal-close i {
  width: 20px;
  height: 20px;
  color: #6b7280;
}

/* Authorize.net Modal */
.authorize-net-modal {
  background: #fff;
}

.authorize-net-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 32px;
  background: #3b82f6;
  border-radius: 12px 12px 0 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.authorize-net-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.authorize-net-header-title-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.authorize-net-header-icon,
.authorize-net-modal-title,
.authorize-net-modal-close i {
  color: #fff;
}

.authorize-net-header-icon {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.authorize-net-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.authorize-net-modal-close {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.2s;
}

.authorize-net-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.authorize-net-modal-close i {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.authorize-net-modal-body {
  padding: 32px;
  background: #fff;
}

.authorize-net-subtitle {
  color: #fff; 
}

.authorize-net-form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

.btn-cancel,
.btn-save-credentials {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-cancel {
  background: #fff;
  color: #374151;
  border: 1px solid #e5e7eb;
}

.btn-cancel:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

.btn-save-credentials {
  background: #10b981;
  color: #fff;
  border: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-save-credentials:hover {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

.btn-save-credentials .btn-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

/* Progress Steps */
.campaign-progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  position: relative;
  gap: 30px;
  max-width: 670px;
  margin: 0 auto;
}

.campaign-progress-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 32px;
  right: 32px;
  height: 2px;
  background: #e5e7eb;
  z-index: 0;
  transform: translateY(-50%);
}

.progress-step {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
  /* flex: 1; */
  background: #fff;
}

.progress-step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #C6E1FD;
  border: 2px solid #C6E1FD;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #000;
  font-size: 0.875rem;
  transition: all 0.3s;
  box-shadow: 0 0 0 10px #ffffff;
}

.progress-step-circle.active {
  background: #3949A6;
  border-color: #3949A6;
  color: #ffffff;
}

.progress-step-label {
  font-size: 1rem;
  color: #000000;
  font-weight: 500;
  text-align: center;
  background-color: #fff;
  padding-right: 10px;
}

.progress-step-circle.active+.progress-step-label {
  color: #3949A6;
}

/* Modal Step Content */
.campaign-modal-step {
  padding: 32px;
}

.light-blue-bg {
  border-radius: 21px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #bae6fd 100%);
  padding: 15px;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 24px 0;
}

/* Payment Setup Sections */
.payment-section {
  margin-bottom: 24px;
}

.payment-section-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.payment-section-desc {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 20px 0;
}

.credentials-status-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fcd34d 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 20px;
}

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

.credentials-icon {
  width: 64px;
  height: 64px;
  color: #f59e0b;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  padding: 16px;
}

.credentials-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.credentials-desc {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  max-width: 400px;
}

.credentials-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-add-credentials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.btn-add-credentials:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  transform: translateY(-1px);
}

.btn-go-settings {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.625rem 1.25rem;
  background: #ffffff;
  color: #f97316;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid #f97316;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-go-settings:hover {
  background: #f97316;
  color: #ffffff;
  transform: translateY(-1px);
}

.credentials-configured-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

.configured-icon {
  width: 24px;
  height: 24px;
  color: #10b981;
}

.credentials-configured-box span {
  flex: 1;
  color: #166534;
  font-weight: 500;
}

.btn-link {
  background: none;
  border: none;
  color: #3b82f6;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.btn-link:hover {
  color: #2563eb;
}

/* Form Styles */
.authorize-net-settings-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.required {
  color: #ef4444;
}

.form-control {
  padding: 12px 16px !important;
  border: 1px solid #C6E1FD !important;
  border-radius: 8px !important;
  font-size: 0.875rem !important;
  transition: all 0.2s !important;
  box-shadow: none !important;
  /* height: 43px !important; */
}

.form-control:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.date-input-wrapper {
  position: relative;
}

.date-input-wrapper .form-control {
  padding-right: 45px;
  cursor: pointer;
}

.date-input-wrapper .calendar-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #6b7280;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.date-input-wrapper .calendar-icon i,
.date-input-wrapper .calendar-icon svg {
  width: 18px;
  height: 18px;
}

.date-input-wrapper .form-control {
  padding-right: 48px !important;
}

/* Flatpickr styling */
.flatpickr-input {
  cursor: pointer;
}

.flatpickr-calendar {
  z-index: 10000 !important;
}

/* Radio Group */
.radio-group {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 500;
  color: #374151;
}

.radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Role Tooltip Styles - Pixel-accurate Figma design */
.role-tooltip-wrapper {
  position: relative;
}

.role-tooltip {
  position: absolute;
  left: calc(100% + 16px);
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1a1a1a;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 300px;
  min-width: 260px;
  width: max-content;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  pointer-events: none;
  font-weight: 400;
  word-wrap: break-word;
  white-space: normal;
  letter-spacing: -0.01em;
  font-family: inherit;
}

.role-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-right-color: #FFD700;
  margin-right: 0;
}

/* When tooltip is on left side (for edge cases) */
.role-tooltip[data-position="left"] {
  left: auto;
  right: calc(100% + 16px);
}

.role-tooltip[data-position="left"]::before {
  right: auto;
  left: 100%;
  border-right-color: transparent;
  border-left-color: #FFD700;
  margin-right: 0;
  margin-left: 0;
}

.role-tooltip-wrapper:hover .role-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}

.role-tooltip-wrapper:hover .role-tooltip[data-position="left"] {
  transform: translateY(-50%);
}

/* Ensure tooltip doesn't interfere with radio-card layout */
.create-account-section .radio-label.role-tooltip-wrapper {
  overflow: visible;
}

.create-account-section .radio-group {
  overflow: visible;
  position: relative;
}

/* Form Section */
.form-section {
  margin-top: 8px;
  border-radius: 17px;
  background: #FFF;
  padding: 14px 13px;
}

.section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 16px 0;
}

/* Allocation Row */
.allocation-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 12px;
}

.allocation-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.allocation-input-wrapper {
  position: relative;
}

.allocation-input-wrapper .form-control {
  padding-right: 40px;
  border-radius: 7px;
  border: 1px solid #C6E1FD;
  background: #ffc107;
}

.allocation-percent {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  font-weight: 500;
}

.allocation-total {
  text-align: right;
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 8px;
}

.allocation-total strong {
  color: #10b981;
  font-weight: 600;
}

/* File Upload */
.file-upload-area {
  border: 1px dashed #6A86C6;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: #FAFCFF;
}

.file-upload-area:hover {
  background: #f1f5f9;
  border-color: #2563eb;
}

.file-upload-area.drag-over {
  background: #dbeafe;
  border-color: #2563eb;
}

.upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.upload-icon {
  width: 20px;
  height: 20px;
  color: #555;
}

.upload-text {
  font-size: 0.875rem;
  color: #F15C26;
  margin: 0;
}

.upload-text-red {
  color: red;
}

.upload-text-ccc {
  color: #555;
}

.upload-hint {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
}

.uploaded-file {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

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

.file-icon {
  width: 32px;
  height: 32px;
  color: #3b82f6;
}

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

.file-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
}

.file-size {
  font-size: 0.75rem;
  color: #6b7280;
}

.file-progress {
  flex: 1;
  max-width: 200px;
}

.file-progress .progress-bar {
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
}

.file-progress .progress-fill {
  height: 100%;
  background: #3b82f6;
  border-radius: 3px;
  transition: width 0.3s;
}

.file-delete {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #ef4444;
  transition: background 0.2s;
}

.file-delete:hover {
  background: #fee2e2;
}

/* Royalty Input */
.royalty-input-wrapper {
  position: relative;
}

.royalty-input-wrapper .form-control {
  padding-right: 40px;
}

.royalty-percent {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  font-weight: 500;
}

/* Form Actions */
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.btn-primary {
  padding: 12px 24px;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid #3949A6;
  background: #3949A6;
}

.btn-primary:hover {
  background: #242e68;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
  padding: 12px 24px;
  background: #ffffff;
  color: #374151;
  border: 1px solid #C6E1FD;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #000;
}

/* Review Section */
.review-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-section {
  padding: 20px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.review-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px 0;
}

.review-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
}

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

.review-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.review-value {
  font-size: 0.875rem;
  color: #1a1a1a;
  font-weight: 600;
}

/* Checklist */
.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.check-icon {
  width: 20px;
  height: 20px;
  color: #10b981;
}

.checklist-item span {
  font-size: 0.875rem;
  color: #374151;
}

/* Distribution */
.distribution-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
}

.distribution-item:last-of-type {
  border-bottom: none;
}

.distribution-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.distribution-value {
  font-size: 0.875rem;
  color: #1a1a1a;
  font-weight: 600;
}

.distribution-total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
  text-align: right;
  font-size: 0.875rem;
  color: #6b7280;
}

.distribution-total strong {
  color: #10b981;
  font-weight: 600;
}

/* NFT Tiers Preview */
#nftTiersPreview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nft-tier-preview {
  padding: 16px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.nft-tier-preview-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.nft-tier-preview-details {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
  .campaign-modal {
    max-width: 100%;
    margin: 10px;
  }

  .campaign-modal-header,
  .campaign-modal-step {
    padding: 20px;
  }

  .form-row,
  .allocation-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .campaign-progress-steps {
    padding: 16px;
  }

  .progress-step-label {
    font-size: 0.7rem;
  }
}

/* ====================================
   PUBLIC CAMPAIGNS INDEX PAGE STYLES
   ====================================*/

/* Header Section */
.campaigns-public-header {
  text-align: center;
  padding: 3rem 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.campaigns-public-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #333333;
  margin: 0 0 0rem 0;
  line-height: 1.2;
}

.campaigns-public-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

/* Search and Filter Section */
.campaigns-search-filter {
  max-width: 1400px;
  margin: 0 auto 2rem;
  padding: 25px 23px;
  border-radius: 17px;
  background: #F8FAFC;
}

.search-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.search-input {
  width: 100%;
  padding: 0.875rem 3rem 0.875rem 1rem;
  border: 1px solid #C6E1FD;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.campaign-autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  margin-top: 0.25rem;
  border: 1px solid #C6E1FD;
  border-radius: 0.5rem;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
}

.suggestion-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.875rem;
  color: #374151;
}

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

.suggestion-item:hover {
  background-color: #f3f4f6;
  color: #1f2937;
}

.search-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #6b7280;
  pointer-events: none;
}

.search-icon-clickable {
  pointer-events: auto;
  cursor: pointer;
  transition: color 0.2s;
}

.search-icon-clickable:hover {
  color: #3b82f6;
}

/* Athlete/Team Autocomplete Dropdown - Same style as campaign */
.athlete-autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  margin-top: 0.25rem;
  border: 1px solid #C6E1FD;
  border-radius: 0.5rem;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
}

.athlete-autocomplete-dropdown .suggestion-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.875rem;
  color: #374151;
}

.athlete-autocomplete-dropdown .suggestion-item:last-child {
  border-bottom: none;
}

.athlete-autocomplete-dropdown .suggestion-item:hover {
  background-color: #f3f4f6;
  color: #1f2937;
}

.filters-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.filter-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #555555;
}

.filter-select {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 1px solid #C6E1FD;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  background: #ffffff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  appearance: none;
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.filter-icon {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  width: 18px;
  height: 18px;
  color: #6b7280;
  pointer-events: none;
}

/* Campaigns Listing Section */
.campaigns-listing-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

.campaigns-listing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.campaigns-listing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.sort-wrapper label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.sort-select {
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: 1px solid #C6E1FD;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  background: #ffffff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  appearance: none;
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  cursor: pointer;
  min-width: 150px;
}

.sort-icon {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #6b7280;
  pointer-events: none;
}

/* Campaigns Grid - Using athletes card structure */
.campaigns-listing-section .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Campaign Progress Wrap with Background */
.campaign-card .progress-wrap.campaign-progress-wrap {
  margin-top: 12px;
  background: #F8FAFC;
  border-radius: 10px;
  padding: 10px;
}

.campaign-card .progress-wrap.campaign-progress-wrap .progress-text {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-size: 13px !important;
  margin-bottom: 6px !important;
  flex-direction: row !important;
}

.campaign-card .progress-wrap.campaign-progress-wrap .progress-text>div {
  display: block !important;
}

.campaign-card .progress-wrap.campaign-progress-wrap .progress-raised {
  color: #333333 !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}

.campaign-card .progress-wrap.campaign-progress-wrap .progress-percent {
  color: #333333 !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}

.campaign-card .progress-wrap.campaign-progress-wrap .bar {
  height: 6px;
  background: #e5e7eb;
  border-radius: 10px;
  margin-top: 6px;
  overflow: hidden;
  width: 100%;
}

.campaign-card .progress-wrap.campaign-progress-wrap .fill {
  height: 100%;
  background: #4700FF;
  border-radius: 10px;
  transition: width 0.3s ease;
}

.campaign-card .progress-wrap.campaign-progress-wrap .goal {
  font-size: 16px;
  color: #333;
  text-align: left;
  margin-top: 6px;
  font-weight: 600;
}

/* Campaign Actions Inline */
.campaign-actions-inline {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn-view-campaign-inline {
  padding: 0.5rem 1rem;
  color: #6b7280;
  /* border: 1px solid #C6E1FD; */
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  background: #F2F8FF;
}

.btn-view-campaign-inline:hover {
  background: #f9fafb;
  /* border-color: #9ca3af; */
  color: #374151;
}

.btn-contribute-inline {
  padding: 0.5rem 1rem;
  background: #3949A6;
  color: #ffffff;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-contribute-inline:hover {
  background: #7c3aed;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(139, 92, 246, 0.3);
  color: #ffffff;
}

/* Campaign Card Specific Adjustments */
.campaigns-listing-section .card.campaign-card {
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #C6E1FD;
  transition: all 0.3s;
  padding: 10px;
}

.campaigns-listing-section .card.campaign-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.campaigns-listing-section .card-img-sec {
  position: relative;
}

.campaigns-listing-section .card-img-banner.campaign-banner {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f3f4f6;
}

.campaigns-listing-section .campaign-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  display: block;
  max-height: 100%;
}

.campaigns-listing-section .card.campaign-card:hover .campaign-banner img {
  transform: scale(1.05);
}

/* Days Left Badge (Top Left Overlay) */
.campaign-days-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.campaign-badge-blue {
  background: rgba(59, 130, 246, 0.9);
}

.campaign-badge-purple {
  background: rgba(139, 92, 246, 0.9);
}

.campaign-badge-orange {
  background: rgba(249, 115, 22, 0.9);
}

.campaign-badge-red {
  background: rgba(239, 68, 68, 0.9);
}

.campaign-days-badge .badge-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Author Overlay (Bottom Left) */
.campaign-author-overlay {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  /* background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px); */
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

.campaign-author-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 1px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 1);
  background: #f3f4f6;
}

.campaign-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.campaign-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.campaign-author-name {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  /* 110% */
}

.campaign-author-sport {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.campaign-author-sport .sport-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Campaign Card Body */
.campaign-card-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.campaign-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

.campaign-card-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.campaign-card-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  border-top: 1px solid #EAEAEA;
  border-bottom: 1px solid #EAEAEA;
  padding: 8px 0;
}

.campaign-card-location .location-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #FF972B;
}

/* Campaign Card Actions */
.campaign-card-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.campaign-card-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.campaign-card-actions .btn-view-campaign-inline,
.campaign-card-actions .btn-contribute-inline {
  flex: 1;
  width: 50%;
  min-width: 0;
  text-align: center;
}

/* Campaigns Grid - Old styles kept for reference but not used */
.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Campaign Card */
.campaign-card {
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.campaign-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.campaign-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f3f4f6;
}

.campaign-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.campaign-card:hover .campaign-card-image img {
  transform: scale(1.05);
}

.time-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  z-index: 1;
}

.time-badge-blue {
  background: #3b82f6;
}

.time-badge-purple {
  background: #3949A6;
}

.time-badge-orange {
  background: #f59e0b;
}

.time-badge-red {
  background: #ef4444;
}

/* Campaign Card Content */
.campaign-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.campaign-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.campaign-profile {
  flex-shrink: 0;
}

.profile-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e5e7eb;
}

.campaign-athlete-info {
  flex: 1;
  min-width: 0;
}

.athlete-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.athlete-sport {
  font-size: 0.75rem;
  color: #6b7280;
}

.campaign-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

.campaign-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.campaign-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.campaign-location i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Campaign Funding */
.campaign-funding {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.funding-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.funding-amount {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
}

.funding-progress {
  width: 100%;
}

.progress-bar-campaign-card {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
}

.progress-fill-campaign-card {
  height: 100%;
  background: #3949A6;
  border-radius: 0.5rem;
  transition: width 0.3s ease;
}

.funding-goal {
  font-size: 0.875rem;
  color: #6b7280;
}

.funding-goal strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* Campaign Actions */
.campaign-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.btn-view-campaign {
  flex: 1;
  padding: 0.625rem 1rem;
  background: #ffffff;
  color: #6b7280;
  border: 1px solid #C6E1FD;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-view-campaign:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #374151;
}

.btn-contribute {
  flex: 1;
  padding: 0.625rem 1rem;
  background: #3949A6;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-contribute:hover {
  background: #7c3aed;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(139, 92, 246, 0.3);
  color: #ffffff;
}

/* No Campaigns */
.no-campaigns {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: #6b7280;
}

/* Pagination */
.campaigns-pagination {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .campaigns-listing-section .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .campaigns-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filters-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .campaigns-public-header {
    padding: 2rem 0 1.5rem;
  }

  .campaigns-public-title {
    font-size: 2rem;
  }

  .campaigns-public-subtitle {
    font-size: 1rem;
  }

  .campaigns-grid {
    grid-template-columns: 1fr;
  }

  .filters-row {
    grid-template-columns: 1fr;
  }

  .campaigns-listing-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .sort-wrapper {
    width: 100%;
  }

  .sort-select {
    width: 100%;
  }

  .campaign-actions {
    flex-direction: column;
  }

  .btn-view-campaign,
  .btn-contribute {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .campaigns-public-title {
    font-size: 1.75rem;
  }

  .campaigns-listing-title {
    font-size: 1.25rem;
  }
}

/* ====================================
   CAMPAIGN SHOW PAGE STYLES
   ====================================*/

.campaign-show-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Breadcrumbs */
.campaign-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.campaign-breadcrumbs a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.campaign-breadcrumbs a:hover {
  color: #3b82f6;
}

.breadcrumb-separator {
  color: #9ca3af;
}

.breadcrumb-current {
  color: #1a1a1a;
  font-weight: 500;
}

/* Campaign Header */
.campaign-header {
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 30px;
  padding: 15px;
}

.campaign-status-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.status-tag {
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-active {
  border-radius: 36px;
  background: #DAFFED;
  color: #036535;
}

.days-left {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.campaign-title {
  color: #333;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  /* 123.077% */
}

/* Campaign Layout */
.campaign-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
}

.campaign-main-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Campaign Info Card */
.campaign-info-card {
  /* background: #ffffff; */
  /* border-radius: 0.75rem; */
  padding: 0 0 10px 0;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb; */
  border-radius: 10px;
  background: #FAFAFA;
}

.athlete-profile-section {
  display: flex;
  gap: 1.5rem;
  padding: 0 15px;
  /* margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb; */
}

.athlete-image-wrapper {
  flex-shrink: 0;
}

.athlete-profile-image {
  width: 120px;
  height: 120px;
  border-radius: 0.75rem;
  object-fit: cover;
  border: 2px solid #e5e7eb;
}

.heading-camp{
  display: flex;
  justify-content: space-between;
}

.athlete-details {
  flex: 1;
}

.athlete-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem 0;
}

.athlete-role {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 1rem 0;
}

.athlete-achievements {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.achievement-badge {
  /* padding: 0.375rem 0.75rem; */
  /* background: #f3f4f6; */
  color: #374151;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.campaign-meta-info {
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  gap: 1rem;
}

.meta-item {
    display: flex;
    /* align-items: center; */
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
    flex-direction: column;
    width: 50%;
    padding-left: 20px;
}

.meta-sec{

    display: flex;
    flex-direction: row;
    flex: 1;
    justify-content: space-between;
    padding: 0 20px;

}

 .meta-sec:first-child {
    border-bottom: 1px solid #D4D4D4;
 }


.meta-item p{
  color: #333;
  font-weight: 600;
}

.meta-icon {
  width: 18px;
  height: 18px;
  color: #6b7280;
  flex-shrink: 0;
}

/* Section Title */
.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1rem 0;
}

/* Campaign Progress Section */
.campaign-progress-section {
  /* background: #ffffff;
  border-radius: 0.75rem; */
  padding: 1.5rem;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb; */
  border-radius: 10px;
  background: #F8FAFC;
}

.progress-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.progress-percentage {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
}

.progress-bar-wrapper {
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: #4700FF;
  border-radius: 0.5rem;
  transition: width 0.3s ease;
}

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

.goal-amount {
  font-size: 24px;
  font-weight: 700;
  color: #f97316;
}

.remaining-amount {
  font-size: 0.875rem;
  color: #333;
  font-weight: 500;
}

/* Campaign Story Section */
.campaign-story-section {
  /* background: #ffffff;
  border-radius: 0.75rem; */
  padding: 1.5rem;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb; */
  border-radius: 10px;
  background: #FAFAFA;
}

.story-content {
  line-height: 1.6;
}

.story-text {
  font-size: 0.875rem;
  color: #374151;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.story-text-short,
.story-text-full {
  display: inline;
}

.read-more-link {
  color: #FF972B;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s;
  margin-left: 0.25rem;
  cursor: pointer;
}

.read-more-link:hover {
  color: #c07321;
  text-decoration: underline;
}

/* Gallery Section */
.campaign-gallery-section {
  /* background: #ffffff;
  border-radius: 0.75rem; */
  padding: 1.5rem;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb; */
  border-radius: 10px;
  background: #FAFAFA;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* Single image - full width */
.gallery-grid.gallery-single {
  grid-template-columns: 1fr;
}

.gallery-grid.gallery-single .gallery-item {
  padding-top: 56.25%; /* 16:9 aspect ratio for single image */
}

/* Two images - side by side */
.gallery-grid.gallery-double {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-grid.gallery-double .gallery-item {
  padding-top: 75%; /* 4:3 aspect ratio for double images */
}

/* Three or more images - 3 columns */
.gallery-grid.gallery-triple {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid.gallery-triple .gallery-item {
  padding-top: 100%; /* Square aspect ratio for triple images */
}

.gallery-item {
  position: relative;
  width: 100%;
  padding-top: 100%;
  /* Square aspect ratio */
  overflow: hidden;
  border-radius: 0.5rem;
  background: #f3f4f6;
}

.gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Contributors Section */
.contributors-section {
  /* background: #ffffff;
  border-radius: 0.75rem; */
  padding: 1.5rem;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb; */
  border-radius: 10px;
  background: #FAFAFA;
}

.contributors-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contributor-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid #fff;
}

.contributor-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.contributor-info {
  flex: 1;
  min-width: 0;
}

.contributor-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.contributor-time {
  font-size: 0.75rem;
  color: #6b7280;
}

.contributor-amount {
  font-size: 0.875rem;
  font-weight: 600;
  color: #FF972B;
}

/* Contributors Empty State */
.contributors-empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px dashed #e5e7eb;
}

.contributors-empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: block;
  color: #d1d5db;
  stroke-width: 1.5;
}

.contributors-empty-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.75rem;
}

.contributors-empty-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0 auto;
}

/* Updates Section */
.updates-section {
  /* background: #ffffff;
  border-radius: 0.75rem; */
  padding: 1.5rem;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb; */
  border-radius: 10px;
  background: #FAFAFA;
}

.updates-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.update-item {
  display: flex;
  gap: 1rem;
  position: relative;
}

.update-indicator {
  width: 4px;
  border-radius: 2px;
  flex-shrink: 0;
}

.update-indicator-blue {
  background: #3b82f6;
}

.update-indicator-green {
  background: #10b981;
}

.update-content {
  flex: 1;
}

.update-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.update-time {
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.update-description {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
}

/* Comments Section */
.comments-section {
  /* background: #ffffff;
  border-radius: 0.75rem; */
  padding: 1.5rem;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb; */
  border-radius: 10px;
  background: #FAFAFA;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.comment-item {
  display: flex;
  gap: 1rem;
  padding: 12px 20px;
  border-radius: 10px;
  background: #FFF;
  align-items: center;
}

.comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.comment-content {
  flex: 1;
  min-width: 0;
}

.comment-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  gap: 10px;
}

.comment-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
}

.comment-time {
  font-size: 0.75rem;
  color: #6b7280;
}

.comment-text {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
}

.comment-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #fff7ed;
  border-radius: 0.5rem;
  border: 1px solid #fed7aa;
  flex-direction: column;
  gap: 10px;
}

.cta-text {
  font-size: 20px;
  color: #374151;
  font-weight: 500;
}

.btn-login-comment {
  padding: 0.5rem 1rem;
  border-radius: 10px;
  background: #FF972B;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-login-comment:hover {
  background: #ea580c;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(249, 115, 22, 0.3);
  color: #ffffff;
}

/* Sidebar */
.campaign-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  /* background: #ffffff;
  border-radius: 0.75rem; */
  padding: 1.5rem;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb; */
  border-radius: 10px;
  background: #FAFAFA;
}

.sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.5rem 0;
}

/* Contribute Form */
.contribute-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.custom-amount-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.custom-amount-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.amount-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.currency-symbol {
  position: absolute;
  left: 1rem;
  color: #6b7280;
  font-weight: 600;
  z-index: 1;
}

.amount-input {
  width: 100%;
  padding: 0.75rem 4rem 0.75rem 2.5rem;
  border: 1px solid #C6E1FD;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.amount-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.amount-controls {
  position: absolute;
  right: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.amount-btn {
  width: 20px;
  height: 20px;
  border: none;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 0.625rem;
  cursor: pointer;
  border-radius: 0.25rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.amount-btn:hover {
  background: #e5e7eb;
  color: #374151;
}

/* Payment Type Toggle Switch */
.payment-type-buttons {
  position: relative;
  display: flex;
  background: #e5e7eb;
  border-radius: 8px;
  padding: 4px; 
}

.payment-type-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: transparent;
  color: #6b7280;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2; 
}
.payment-type-btn.active {
  background: #fff;
  color: #000;
  border: 1px solid #C6E1FD;
}
 

.preset-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.preset-btn {
  padding: 0.75rem;
  background: #ffffff;
  color: #374151;
  border: 1px solid #C6E1FD;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.preset-btn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

.preset-btn.active {
  background: #3949A6;
  color: #ffffff;
  border-color: #3949A6;
}

.btn-proceed-payment {
  width: 100%;
  padding: 0.875rem;
  background: #3949A6;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-proceed-payment:hover {
  background: #7c3aed;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(139, 92, 246, 0.3);
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.countdown-value {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.countdown-label {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
}

/* Share Buttons */
.share-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.share-buttons a {
  color: #fff;
}

.share-btn {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s;
}

.share-btn i {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.share-facebook {
  background: #1877f2;
}

.share-facebook:hover {
  background: #166fe5;
  transform: translateY(-2px);
}

.share-twitter {
  background: #1da1f2;
}

.share-twitter:hover {
  background: #1a91da;
  transform: translateY(-2px);
}

.share-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.share-instagram:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.share-link {
  background: #6b7280;
}

.share-link:hover {
  background: #4b5563;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .campaign-layout {
    grid-template-columns: 1fr;
  }

  .campaign-sidebar {
    order: -1;
  }

  .campaign-meta-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .campaign-title {
    font-size: 1.5rem;
  }

  .athlete-profile-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  /* Mobile: All gallery layouts become single column */
  .gallery-grid.gallery-single,
  .gallery-grid.gallery-double,
  .gallery-grid.gallery-triple {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid.gallery-single .gallery-item,
  .gallery-grid.gallery-double .gallery-item,
  .gallery-grid.gallery-triple .gallery-item {
    padding-top: 56.25%; /* 16:9 aspect ratio on mobile */
  }

  .preset-amounts {
    grid-template-columns: 1fr;
  }

  .countdown-timer {
    justify-content: space-around;
  }

  .share-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

  .comment-cta {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .btn-login-comment {
    width: 100%;
    text-align: center;
  }
}

.select2-container .select2-selection--single {
  height: 53px !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  height: 50px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 48px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 52px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #333 !important;
  border-color: #000 !important;
  color: #fff !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  color: #fff !important;
}

.select2-container--default .select2-selection--multiple {
  padding: 5px !important;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  left: 4px !important;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: #fff !important;
}

::placeholder {
  color: #B4B4B4;
  /* Dark grey color for the placeholder */
  opacity: 1;
  /* Ensure opacity is 1 */
}




/* 12.12.25 */
.breadcum-wrap {
  margin: 20px 0;
}

.breadcum-wrap .container-fluid {
  max-width: 1780px;
  padding: 0;
}

.breadcum-wrap .breadcum-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcum-wrap .breadcum-list li {
  margin: 0;
  color: #FF972B;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  /* 157.143% */
}

.breadcum-wrap .breadcum-list li a {
  color: #555;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
  margin: 0 10px 0 0;
}

.breadcum-wrap .breadcum-list .home {
  display: flex;
  width: 36px;
  height: 36px;
  padding: 6px 7px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 18px;
  border: 1px solid #FF972B;
  background: #FFE4C8;
  color: #FF972B;
}

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

/* Sponsor Dashboard Button Styles */
.btn-blue {
  display: flex;
  padding: 15px 26px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: #3b82f6;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-blue:hover {
  background: #2563eb;
  color: #FFF;
}

.btn-blue .btn-icon {
  width: 20px;
  height: 20px;
}

.btn-orange .btn-icon {
  width: 20px;
  height: 20px;
}

/* Campaign Item Header */
@media (min-width: 2500px) {
  .main-content {
      margin: 0 auto !important;
  }   
}
.campaign-item-header {
  margin-bottom: 0.75rem;
}

.campaign-item-header h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.25rem 0;
}

.campaign-item-header p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #C6E1FD !important;
  border-radius: 8px !important;
  box-shadow: none;
}
/* .select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #C6E1FD !important;
  border-radius: 8px !important;
  height: 43px !important;
  box-shadow: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px !important;
}
.select2-container .select2-selection--single .select2-selection__clear {
  top: -4px !important;
} */
.d-none {
  display: none !important;
}
.badge-team-athe {
  position: absolute;
  top: 5px;
  right: 5px;
}

/* ====================================
   SPONSORSHIP CREATE FORM STYLES
   ====================================*/

/* Sponsorship specific styles */
.sponsorship-create-container {
    max-width: 1400px;
    margin: 0 auto;
}

.sponsorship-step-card {
    background: #F8FAFC;
    border-radius: 15px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid #C6E1FD;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sponsorship-step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
    user-select: none;
}

.sponsorship-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.step-toggle-icon {
    width: 24px;
    height: 24px;
    color: #6b7280;
    transition: transform 0.3s;
}

.step-toggle-icon.rotated {
    transform: rotate(180deg);
}

.sponsorship-step-content {
    display: block;
}

.sponsorship-step-content.collapsed {
    display: none;
}

.beneficiary-preview {
    background: #E3F2FD;
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
    border: 3px solid #ef4444;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

.beneficiary-preview-title {
    font-size: 0.875rem;
    color: #1976D2;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.beneficiary-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.sponsorship-type-radios {
    display: flex;
    gap: 24px;
    margin-top: 12px;
}

.radio-label-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    color: #374151;
}

.radio-label-custom input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #FF9933;
}

.installment-setup-section {
    margin-top: 24px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
}

.installment-row {
    display: grid;
    grid-template-columns: 40px 200px 200px 200px 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.installment-row:last-child {
    border-bottom: none;
}

.installment-number {
    width: 32px;
    height: 32px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.installment-labels {
    display: grid;
    grid-template-columns: 40px 200px 200px 200px 1fr;
    gap: 16px;
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.fund-distribution-row {
    display: grid;
    grid-template-columns: 1fr 180px 1fr 50px;
    gap: 16px;
    margin-bottom: 12px;
    align-items: flex-end;
}

.fund-distribution-actions {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.btn-add-row {
    padding: 10px 20px;
    background: #FF9933;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-add-row:hover {
    background: #e67e1f;
}

.btn-delete-row {
    padding: 10px 20px;
    background: #ef4444;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-delete-row:hover {
    background: #dc2626;
}

.file-upload-box {
    border: 2px dashed #6A86C6;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #ffffff;
    margin-top: 12px;
}

.file-upload-box:hover {
    background: #f9fafb;
    border-color: #3b82f6;
}

.upload-icon-large {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    color: #6b7280;
}

.summary-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.summary-section {
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.summary-label-icon i {
    width: 16px;
    height: 16px;
}

.summary-value {
    font-size: 0.875rem;
    color: #1a1a1a;
    font-weight: 600;
}

.summary-installments {
    font-size: 0.875rem;
    color: #1a1a1a;
    line-height: 1.8;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
}

.terms-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #3949A6;
}

.terms-checkbox label {
    font-size: 0.875rem;
    color: #374151;
    cursor: pointer;
}

.btn-send-offer {
    padding: 14px 32px;
    background: #FF9933;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    float: right;
    margin-top: 20px;
}

.btn-send-offer:hover {
    background: #e67e1f;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 151, 43, 0.3);
}

.btn-send-offer i {
    width: 20px;
    height: 20px;
}

.payment-trigger-radios {
    display: flex;
    gap: 24px;
    align-items: center;
}

.escrow-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.escrow-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3b82f6;
}

.escrow-checkbox label {
    font-size: 0.875rem;
    color: #374151;
    font-weight: 500;
    cursor: pointer;
}
/* Dec 23, 2025 */
.main-navbar .bg-body-tertiary, .campaign-box, .card-sponser, .wallet, .sponser, .activity-card, .card-header {
  background: #fff !important;  
}
.campaign-box, .card-sponser, .wallet, .sponser, .activity-card{border: none;}
.main{
  background: #f8fafc;
}

/* ====================================
   SPONSORSHIP DETAILS PAGE STYLES
   ====================================*/

/* Sponsorship Details Container */
.sponsorship-details-container {
    padding: 24px;
    max-width: 1500px;
    margin: 0 auto;
    background: #f9fafb;
}

/* Breadcrumbs */
.sponsorship-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.sponsorship-breadcrumbs a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.sponsorship-breadcrumbs a:hover {
    color: #4f46e5;
}

.sponsorship-breadcrumbs .breadcrumb-separator {
    color: #d1d5db;
}

.sponsorship-breadcrumbs .breadcrumb-current {
    color: #111827;
    font-weight: 500;
}

/* Header Section */
.sponsorship-header {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sponsorship-header .header-left h1 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sponsorship-header .status-badge-header {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
}

.sponsorship-header .status-badge-header.active {
    background: #d1fae5;
    color: #065f46;
}

.sponsorship-header .status-badge-header.pending {
    background: #fef3c7;
    color: #92400e;
}

.sponsorship-header .status-badge-header.completed {
    background: #dbeafe;
    color: #1e40af;
}

.sponsorship-header .status-badge-header.withdrawn {
    background: #f1f5f9;
    color: #475569;
}

.sponsorship-header .header-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
    margin-top: 8px;
}

.sponsorship-header .header-breadcrumb a {
    color: #4f46e5;
    text-decoration: none;
}

.sponsorship-header .header-breadcrumb a:hover {
    text-decoration: underline;
}

.sponsorship-header .header-actions {
    display: flex;
    gap: 12px;
}

.sponsorship-header .btn-header {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    text-decoration: none;
}

.sponsorship-header .btn-header.btn-edit {
    background: #f59e0b;
    color: white;
}

.sponsorship-header .btn-header.btn-edit:hover {
    background: #d97706;
}

.sponsorship-header .btn-header.btn-withdrawal {
    background: #ef4444;
    color: white;
}

.sponsorship-header .btn-header.btn-withdrawal:hover {
    background: #dc2626;
}

.sponsorship-header .btn-header.btn-report {
    background: #4f46e5;
    color: white;
}

.sponsorship-header .btn-header.btn-report:hover {
    background: #4338ca;
}

/* Main Content Grid */
.sponsorship-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}
a.no-underline {
  text-decoration: none;
}

/* Offer Summary Card */
.offer-summary-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sponsorship-details-container .card-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.summary-label svg {
    width: 16px;
    height: 16px;
}

.summary-value {
    font-size: 16px;
    color: #111827;
    font-weight: 600;
}

/* Athlete Response Card */
.athlete-response-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 11px;
    top: 32px;
    width: 2px;
    height: calc(100% - 12px);
    background: #e5e7eb;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-top: 2px;
}

.timeline-dot.orange {
    background: #fed7aa;
    color: #92400e;
}

.timeline-dot.green {
    background: #d1fae5;
    color: #065f46;
}

.timeline-content {
    flex: 1;
}

.timeline-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

.timeline-title.orange {
    color: #f59e0b;
}

.timeline-title.green {
    color: #10b981;
}

.timeline-date {
    font-size: 13px;
    color: #6b7280;
}

/* Sponsorship Terms Card */
.sponsorship-terms-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.terms-section {
    margin-bottom: 24px;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 12px;
}

.terms-section-title svg {
    width: 16px;
    height: 16px;
}

.terms-value {
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
}

.terms-list {
    list-style: none;
    padding: 0;
}

.terms-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    font-size: 15px;
    color: #374151;
}

.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4f46e5;
    font-weight: bold;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.terms-grid-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Payment Tracking Card */
.payment-tracking-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.payment-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.payment-stat-box {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.payment-stat-box.funds-committed {
    background: #fefce8;
    border-color: #fde047;
}

.payment-stat-box.funds-released {
    background: #eff6ff;
    border-color: #93c5fd;
}

.payment-stat-box.next-payment {
    background: #fef3c7;
    border-color: #fcd34d;
}

.payment-stat-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 8px;
}

.payment-stat-label svg {
    width: 14px;
    height: 14px;
}

.payment-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

/* Payment Table */
.payment-table-wrapper {
    overflow-x: auto;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

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

.payment-table thead {
    background: #f3f4f6;
}

.payment-table th {
    padding: 14px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e5e7eb;
}

.payment-table td {
    padding: 16px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
    color: #374151;
}

.payment-table tbody tr:hover {
    background: #fafafa;
}

.payment-status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
}

.payment-status-badge.released {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #86efac;
}

.payment-status-badge.paid {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #86efac;
}

.payment-status-badge.pending {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde047;
}

.payment-status-badge.scheduled {
    background: #e0e7ff;
    color: #3730a3;
    border: 1px solid #a5b4fc;
}

/* Comments Section */
.comments-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

/* Message notification badge */
/* Bell notification dot */
.bell-notification-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 10;
  animation: pulse-dot 2s infinite;
}

/* Pulse animation for notification dot */
@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.comments-header .card-title {
  position: relative;
  display: inline-block;
}

/* Ensure bell button has relative positioning */
.btn-receive-updates {
  position: relative;
}

/* Report Modal Styles */
#reportModal .modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

#reportModal .modal-header {
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  padding: 20px 24px;
  border-radius: 12px 12px 0 0;
}

#reportModal .modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

#reportModal .modal-body {
  padding: 24px;
}

#reportModal .report-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

#reportModal .report-actions .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 8px;
}

#reportModal .table {
  margin-bottom: 0;
}

#reportModal .table thead {
  background: #f8f9fa;
}

#reportModal .table thead th {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6b7280;
  padding: 14px 16px;
  border-bottom: 2px solid #e5e7eb;
}

#reportModal .table tbody td {
  padding: 16px;
  font-size: 14px;
  color: #374151;
  vertical-align: middle;
}

#reportModal .table tbody tr:hover {
  background: #f9fafb;
}

#reportModal .modal-footer {
  border-top: 1px solid #e9ecef;
  padding: 16px 24px;
  border-radius: 0 0 12px 12px;
}

#reportModal .btn-close {
  background: none;
  border: none;
  font-size: 24px;
  opacity: 0.5;
  cursor: pointer;
}

#reportModal .btn-close:hover {
  opacity: 1;
}

#reportModal .spinner-border {
  width: 3rem;
  height: 3rem;
}

.btn-receive-updates {
    padding: 8px 16px;
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-receive-updates:hover {
    background: #4338ca;
}

.comment-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
}

.comment-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #4f46e5;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

/* WhatsApp-style message formatting */
.comment-item .comment-author {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    margin-bottom: 4px !important;
}

.comment-item .comment-author-name {
    display: flex !important;
    align-items: center !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #111b21 !important;
    margin-bottom: 1px !important;
}

.comment-item .message-time {
    font-size: 11px !important;
    color: #8696a0 !important;
    margin-top: 0 !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
}

.comment-item .comment-text {
    font-size: 14.2px !important;
    color: #111b21 !important;
    line-height: 1.5 !important;
    margin-top: 4px !important;
    margin-bottom: 8px !important;
}

.comment-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #eff6ff;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    color: #1e40af;
}

.comment-badge-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f59e0b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

.comment-reply-form {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.comment-input {
    flex: 1;
    padding: 12px 16px !important;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px !important;
    color: #111b21 !important;
    resize: none;
    min-height: 100px !important;
}

.comment-input::placeholder {
    color: #8696a0 !important;
}

.comment-input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.btn-attach {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #f59e0b;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-attach:hover {
    background: #d97706;
}

.btn-send-message {
    padding: 0 24px;
    height: 48px;
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn-send-message:hover {
    background: #4338ca;
}

.settings-container{
/* Settings page components */
  .settings-card {
    border-radius: 12px;
    overflow: hidden;
  }

  .settings-card-header {
    background: #f6f9fc !important;
  }

  .settings-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px !important;
  }
  
}

/* Responsive Styles for Sponsorship Details */
@media (max-width: 1024px) {
    .sponsorship-content-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-stats {
        grid-template-columns: 1fr;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================================
   MY SPONSORSHIPS PAGE STYLES
   Received Sponsorship Offers listing page
   ====================================*/

.my-sponsorships-page {
    background-color: #f8fafc;
    min-height: 100vh;
}

.my-sponsorships-page .page-header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 32px;
}

.my-sponsorships-page .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
}

.my-sponsorships-page .breadcrumb a {
    color: #64748b;
    text-decoration: none;
}

.my-sponsorships-page .breadcrumb a:hover {
    color: #0f172a;
}

.my-sponsorships-page .breadcrumb .separator {
    color: #cbd5e1;
}

.my-sponsorships-page .breadcrumb .current {
    color: #f97316;
    font-weight: 500;
}

.my-sponsorships-page .page-title-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.my-sponsorships-page .page-title-wrapper h1 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.my-sponsorships-page .page-subtitle {
    font-size: 14px;
    color: #64748b;
}

.my-sponsorships-page .view-active-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f97316;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.my-sponsorships-page .view-active-btn:hover {
    background: #ea580c;
    color: white;
}

.my-sponsorships-page .view-active-btn svg {
    width: 18px;
    height: 18px;
}

.my-sponsorships-page .page-content {
    padding: 24px 32px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Statistics Cards */
.my-sponsorships-page .stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.my-sponsorships-page .stat-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.my-sponsorships-page .stat-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.my-sponsorships-page .stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
}

.my-sponsorships-page .stat-card.inbox .stat-icon-wrapper {
    background: #dbeafe;
}

.my-sponsorships-page .stat-card.pending .stat-icon-wrapper {
    background: #e0e7ff;
}

.my-sponsorships-page .stat-card.active .stat-icon-wrapper {
    background: #fef3c7;
}

.my-sponsorships-page .stat-card.declined .stat-icon-wrapper {
    background: #fee2e2;
}

.my-sponsorships-page .stat-card.total-value .stat-icon-wrapper {
    background: #e0e7ff;
}

.my-sponsorships-page .stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1;
}

.my-sponsorships-page .stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

/* Filters Section */
.my-sponsorships-page .filters-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.my-sponsorships-page .search-box {
    margin-bottom: 20px;
}

.my-sponsorships-page .search-label {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
    display: block;
}

.my-sponsorships-page .search-input-wrapper {
    position: relative;
}

.my-sponsorships-page .search-input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #0f172a;
    transition: border-color 0.2s;
}

.my-sponsorships-page .search-input:focus {
    outline: none;
    border-color: #f97316;
}

.my-sponsorships-page .search-input::placeholder {
    color: #94a3b8;
}

.my-sponsorships-page .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #f97316;
}

.my-sponsorships-page .filter-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.my-sponsorships-page .filter-group {
    display: flex;
    flex-direction: column;
}

.my-sponsorships-page .filter-label {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.my-sponsorships-page .filter-select {
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #64748b;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s;
}

.my-sponsorships-page .filter-select:focus {
    outline: none;
    border-color: #f97316;
}

.my-sponsorships-page .date-inputs {
    display: flex;
    gap: 12px;
    align-items: center;
}

.my-sponsorships-page .date-input-group {
    flex: 1;
}

.my-sponsorships-page .date-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 4px;
    display: block;
}

.my-sponsorships-page .date-input-wrapper {
    position: relative;
}

.my-sponsorships-page .date-input {
    width: 100%;
    padding: 10px 14px 10px 36px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
}

.my-sponsorships-page .date-input:focus {
    outline: none;
    border-color: #f97316;
}

.my-sponsorships-page .calendar-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #94a3b8;
}

.my-sponsorships-page .filter-actions {
    display: flex;
    gap: 12px;
}

.my-sponsorships-page .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.my-sponsorships-page .btn-apply {
    background: #f97316;
    color: white;
}

.my-sponsorships-page .btn-apply:hover {
    background: #ea580c;
}

.my-sponsorships-page .btn-reset {
    background: white;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.my-sponsorships-page .btn-reset:hover {
    background: #f8fafc;
}

.my-sponsorships-page .btn svg {
    width: 16px;
    height: 16px;
}

/* Content Layout */
.my-sponsorships-page .content-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
}

/* Sponsorship Table */
.my-sponsorships-page .sponsorship-table-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.my-sponsorships-page .section-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.my-sponsorships-page .sponsorship-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.my-sponsorships-page .sponsorship-table thead {
    background: #f8fafc;
}

.my-sponsorships-page .sponsorship-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e2e8f0;
}

.my-sponsorships-page .sponsorship-table th:first-child {
    border-top-left-radius: 8px;
}

.my-sponsorships-page .sponsorship-table th:last-child {
    border-top-right-radius: 8px;
}

.my-sponsorships-page .sponsorship-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.my-sponsorships-page .sponsorship-table tbody tr:hover {
    background: #f8fafc;
}

.my-sponsorships-page .sponsorship-table td {
    padding: 16px;
    font-size: 14px;
    color: #0f172a;
}

.my-sponsorships-page .sponsor-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.my-sponsorships-page .sponsor-avatar {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.my-sponsorships-page .sponsor-avatar.sp {
    background: #3b82f6;
}

.my-sponsorships-page .sponsor-avatar.ff {
    background: #f97316;
}

.my-sponsorships-page .sponsor-avatar.as {
    background: #8b5cf6;
}

.my-sponsorships-page .sponsor-info {
    display: flex;
    flex-direction: column;
}

.my-sponsorships-page .sponsor-name {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 2px;
}

.my-sponsorships-page .sponsor-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.my-sponsorships-page .verified-icon {
    width: 14px;
    height: 14px;
    color: #10b981;
}

.my-sponsorships-page .type-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.my-sponsorships-page .type-badge.cash {
    background: #d1fae5;
    color: #065f46;
}

.my-sponsorships-page .type-badge.bank-cheque {
    background: #dbeafe;
    color: #1e40af;
}

.my-sponsorships-page .type-badge.product {
    background: #dbeafe;
    color: #1e40af;
}

.my-sponsorships-page .type-badge.hybrid {
    background: #e9d5ff;
    color: #6b21a8;
}

.my-sponsorships-page .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.my-sponsorships-page .status-badge.pending {
    background: #fef3c7;
    color: #92400e;
}

.my-sponsorships-page .status-badge.active {
    background: #d1fae5;
    color: #065f46;
}

.my-sponsorships-page .status-badge.declined {
    background: #fee2e2;
    color: #991b1b;
}

.my-sponsorships-page .status-badge.withdrawn {
    background: #f1f5f9;
    color: #475569;
}

.my-sponsorships-page .status-badge.completed {
    background: #dbeafe;
    color: #1e40af;
}

.my-sponsorships-page .status-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.my-sponsorships-page .status-badge.pending .status-indicator {
    background: #f59e0b;
}

.my-sponsorships-page .status-badge.active .status-indicator {
    background: #10b981;
}

.my-sponsorships-page .status-badge.declined .status-indicator {
    background: #ef4444;
}

.my-sponsorships-page .status-badge.withdrawn .status-indicator {
    background: #64748b;
}

.my-sponsorships-page .status-badge.completed .status-indicator {
    background: #3b82f6;
}

.my-sponsorships-page .action-buttons {
    display: flex;
    gap: 8px;
}

.my-sponsorships-page .action-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
}

.my-sponsorships-page .action-btn.view {
    background: #dbeafe;
    color: #2563eb;
}

.my-sponsorships-page .action-btn.view:hover {
    background: #bfdbfe;
    color: #2563eb;
}

.my-sponsorships-page .action-btn.approve {
    background: #d1fae5;
    color: #059669;
}

.my-sponsorships-page .action-btn.approve:hover {
    background: #a7f3d0;
    color: #059669;
}

.my-sponsorships-page .action-btn.edit {
    background: #d1fae5;
    color: #059669;
}

.my-sponsorships-page .action-btn.edit:hover {
    background: #a7f3d0;
    color: #059669;
}

.my-sponsorships-page .action-btn.decline,
.my-sponsorships-page .action-btn.delete {
    background: #fee2e2;
    color: #dc2626;
}

.my-sponsorships-page .action-btn.decline:hover,
.my-sponsorships-page .action-btn.delete:hover {
    background: #fecaca;
    color: #dc2626;
}

.my-sponsorships-page .action-btn svg {
    width: 16px;
    height: 16px;
}

/* Recent Activity Sidebar */
.my-sponsorships-page .recent-activity-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.my-sponsorships-page .activity-list {
    list-style: none;
}

.my-sponsorships-page .activity-item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.my-sponsorships-page .activity-item:last-child {
    border-bottom: none;
}

.my-sponsorships-page .activity-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.my-sponsorships-page .activity-indicator.green {
    background: #10b981;
}

.my-sponsorships-page .activity-indicator.blue {
    background: #3b82f6;
}

.my-sponsorships-page .activity-indicator.orange {
    background: #f97316;
}

.my-sponsorships-page .activity-indicator.red {
    background: #ef4444;
}

.my-sponsorships-page .activity-content {
    flex: 1;
}

.my-sponsorships-page .activity-text {
    font-size: 13px;
    color: #0f172a;
    line-height: 1.5;
    margin-bottom: 4px;
}

.my-sponsorships-page .activity-text strong {
    font-weight: 600;
}

.my-sponsorships-page .activity-time {
    font-size: 12px;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .my-sponsorships-page .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .my-sponsorships-page .content-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .my-sponsorships-page .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .my-sponsorships-page .filter-row {
        grid-template-columns: 1fr;
    }
    
    .my-sponsorships-page .page-title-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ====================================
   NFT INVENTORY PAGE STYLES
   ====================================*/

/* NFT Inventory Header */
.nft-inventory-header {
    margin-bottom: 32px;
}

/* Breadcrumb Navigation */
.breadcrumb-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.breadcrumb-link {
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #3949A6;
}

.breadcrumb-separator {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 400;
}

.breadcrumb-current {
    color: #0f172a;
    font-size: 14px;
    font-weight: 500;
}

/* Page Title Section */
.page-title-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.page-title-left {
    flex: 1;
}

.page-title {
    color: #0f172a;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 8px 0;
}

.page-subtitle {
    color: #64748b;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

/* Import Collection Button (Header) */
.btn-import-collection {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: #10b981;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-import-collection:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.btn-import-collection:active {
    transform: translateY(0);
}

.btn-import-collection i {
    width: 20px;
    height: 20px;
}

/* NFT Inventory Container */
.nft-inventory-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 60px 40px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Empty State */
.nft-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.empty-state-icon {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state-icon svg {
    width: 80px;
    height: 80px;
    opacity: 0.9;
}

.empty-state-title {
    color: #0f172a;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 16px 0;
}

.empty-state-description {
    margin-bottom: 32px;
}

.empty-state-description p {
    color: #64748b;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 4px 0;
}

.empty-state-description p:last-child {
    margin-bottom: 0;
}

/* Import Collection Button (Large - Empty State) */
.btn-import-collection-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: #10b981;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-import-collection-large:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.btn-import-collection-large:active {
    transform: translateY(0);
}

.btn-import-collection-large i {
    width: 20px;
    height: 20px;
}

/* Responsive Styles for NFT Inventory */
@media (max-width: 1024px) {
    .page-title-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .btn-import-collection {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nft-inventory-container {
        padding: 40px 24px;
        min-height: 400px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    .empty-state-title {
        font-size: 20px;
    }
    
    .empty-state-description p {
        font-size: 14px;
    }
    
    .empty-state-icon svg {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 480px) {
    .nft-inventory-container {
        padding: 32px 16px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .btn-import-collection,
    .btn-import-collection-large {
        width: 100%;
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* ====================================
   NFT IMPORT COLLECTION MODAL STYLES
   ====================================*/

/* Modal Overlay */
.nft-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    overflow-y: auto;
}

.nft-modal-overlay.active {
    display: flex;
}

/* Modal Container */
.nft-modal {
    background: #ffffff;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid #e2e8f0;
    animation: modalSlideIn 0.3s ease-out;
}

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

/* Modal Header */
.nft-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 10;
    border-radius: 12px 12px 0 0;
}

.nft-modal-title {
    font-size: 28px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.nft-modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
    color: #64748b;
}

.nft-modal-close:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.nft-modal-close i {
    width: 20px;
    height: 20px;
}

/* Modal Body */
.nft-modal-body {
    padding: 24px 32px 32px;
}

/* Info Banner */
.nft-info-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    margin-bottom: 28px;
}

.nft-info-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.nft-info-icon i {
    width: 20px;
    height: 20px;
}

.nft-info-text {
    flex: 1;
    color: #1e40af;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

/* Import Steps */
.nft-import-step {
    padding: 18px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 16px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.nft-import-step:last-child {
    margin-bottom: 0;
}

.nft-import-step.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.nft-import-step.active {
    border-color: #3b82f6;
    background: #f8fafc;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.nft-import-step.completed {
    border-color: #10b981;
    background: #f0fdf4;
}

.nft-import-step.completed .nft-step-number {
    background: #10b981;
    color: #ffffff;
}

/* Step Header */
.nft-step-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.nft-step-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #e2e8f0;
    color: #64748b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.nft-import-step.active .nft-step-number {
    background: #3b82f6;
    color: #ffffff;
}

.nft-step-content {
    flex: 1;
}

.nft-step-title {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 2px 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.nft-step-subtitle {
    font-size: 13px;
    font-weight: 400;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* MetaMask Button */
.btn-metamask {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    background: #f97316;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 240px;
}

.btn-metamask:hover {
    background: #ea580c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

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

.btn-metamask svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* Step Input Wrapper */
.nft-step-input-wrapper {
    margin-top: 12px;
}

.nft-contract-input {
    width: 100%;
    padding: 10px 14px;
    font-size: 13px;
    font-family: 'Courier New', Consolas, Monaco, monospace;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    outline: none;
    transition: all 0.2s ease;
}

.nft-contract-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.nft-contract-input:disabled {
    background: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
}

.nft-contract-input::placeholder {
    color: #94a3b8;
}

/* Responsive Styles for NFT Modal */
@media (max-width: 768px) {
    .nft-modal {
        max-width: 100%;
        margin: 0 16px;
    }
    
    .nft-modal-header {
        padding: 20px 24px;
    }
    
    .nft-modal-title {
        font-size: 24px;
    }
    
    .nft-modal-body {
        padding: 20px 24px 24px;
    }
    
    .nft-info-banner {
        padding: 12px 14px;
        gap: 10px;
    }
    
    .nft-info-text {
        font-size: 13px;
    }
    
    .nft-import-step {
        padding: 16px 18px;
    }
    
    .nft-step-header {
        gap: 12px;
    }
    
    .nft-step-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .nft-step-title {
        font-size: 15px;
    }
    
    .nft-step-subtitle {
        font-size: 13px;
    }
    
    .btn-metamask {
        width: 100%;
        max-width: 100%;
        padding: 11px 18px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nft-modal-overlay {
        padding: 0;
        align-items: flex-end;
    }
    
    .nft-modal {
        max-height: 95vh;
        margin: 0;
        border-radius: 12px 12px 0 0;
        animation: modalSlideUp 0.3s ease-out;
    }
    
    @keyframes modalSlideUp {
        from {
            opacity: 0;
            transform: translateY(100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nft-modal-header {
        padding: 18px 20px;
    }
    
    .nft-modal-title {
        font-size: 22px;
    }
    
    .nft-modal-body {
        padding: 18px 20px 24px;
    }
    
    .nft-info-banner {
        flex-direction: row;
        gap: 10px;
        padding: 12px;
    }
    
    .nft-import-step {
        padding: 14px 16px;
        margin-bottom: 12px;
    }
    
    .nft-step-header {
        flex-direction: row;
        gap: 10px;
    }
    
    .nft-step-number {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    
    .nft-step-title {
        font-size: 14px;
    }
    
    .nft-step-subtitle {
        font-size: 12px;
    }
}

/* ====================================
   NFT MODAL - ADDITIONAL STATES & ELEMENTS
   ====================================*/

/* Loading Spinner */
.spinner-small {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* Connection Status Text */
.connection-status,
.network-status,
.fetch-status {
    margin-top: 12px;
    color: #3b82f6;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.connection-status::before,
.network-status::before,
.fetch-status::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid #3b82f6;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* Wallet Address Display */
.wallet-address {
    margin-top: 12px;
    padding: 10px 14px;
    background: #dcfce7;
    border: 1px solid #86efac;
    border-radius: 6px;
    color: #15803d;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Courier New', Consolas, Monaco, monospace;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wallet-address i {
    width: 16px;
    height: 16px;
    color: #15803d;
}

/* Network Badge */
.network-badge {
    margin-top: 12px;
    padding: 8px 12px;
    background: #dbeafe;
    border: 1px solid #93c5fd;
    border-radius: 6px;
    color: #1e40af;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.network-badge i {
    width: 14px;
    height: 14px;
}

/* Step Connecting State */
.nft-import-step.connecting {
    border-color: #3b82f6;
    background: #eff6ff;
}

/* Step Switching State */
.nft-import-step.switching {
    border-color: #3b82f6;
    background: #eff6ff;
}

/* Switch Network Button */
.btn-switch-network {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    background: #3b82f6;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 12px;
}

.btn-switch-network:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-switch-network:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-switch-network i {
    width: 16px;
    height: 16px;
}

/* Input Group for Contract Address */
.nft-step-input-group {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.nft-step-input-group .nft-contract-input {
    flex: 1;
}

/* Fetch NFTs Button */
.btn-fetch-nfts {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    background: #10b981;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-fetch-nfts:hover:not(:disabled) {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-fetch-nfts:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-fetch-nfts i {
    width: 16px;
    height: 16px;
}

/* NFT Grid Container */
.nft-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

/* NFT Card */
.nft-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.nft-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nft-card.selected {
    border-color: #10b981;
    background: #f0fdf4;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.nft-card-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f5f9;
}

.nft-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nft-card-checkbox {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nft-card-checkbox i {
    width: 18px;
    height: 18px;
    color: #64748b;
}

.nft-card.selected .nft-card-checkbox i {
    color: #10b981;
}

.nft-card-info {
    margin-top: 10px;
}

.nft-card-name {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nft-card-collection {
    font-size: 12px;
    font-weight: 400;
    color: #64748b;
}

/* NFT Selection Footer */
.nft-selection-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
    position: sticky;
    bottom: 0;
    z-index: 10;
    border-radius: 0 0 12px 12px;
    margin: 0 -32px -32px;
}

.nft-selection-count {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
}

.nft-selection-count .selected-count {
    font-weight: 700;
    color: #0f172a;
}

/* Add to Inventory Button */
.btn-add-to-inventory {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    background: #10b981;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-add-to-inventory:hover:not(:disabled) {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-add-to-inventory:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-add-to-inventory i {
    width: 18px;
    height: 18px;
}

/* Step 4 Specific Styles */
#step4 {
    display: none;
}

#step4.active {
    display: block;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .nft-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .nft-selection-footer {
        flex-direction: column;
        gap: 12px;
        padding: 16px 24px;
    }
    
    .btn-add-to-inventory {
        width: 100%;
    }
    
    .nft-step-input-group {
        flex-direction: column;
    }
    
    .btn-fetch-nfts {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nft-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .nft-card {
        padding: 8px;
    }
    
    .nft-card-name {
        font-size: 13px;
    }
    
    .nft-card-collection {
        font-size: 11px;
    }
    
    .nft-selection-footer {
        padding: 14px 20px;
        margin: 0 -20px -24px;
    }
    
    .wallet-address {
        font-size: 12px;
        padding: 8px 12px;
    }
}

/* ===================================
   Network Selector
   =================================== */
.network-selector-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    animation: fadeIn 0.2s ease;
}

.network-selector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 400px;
    max-width: 90vw;
    max-height: 80vh;
    z-index: 10002;
    animation: slideUp 0.3s ease;
    display: flex;
    flex-direction: column;
}

.network-selector-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.network-selector-header h3 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.network-selector-close {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-selector-close:hover {
    color: #111827;
}

.network-selector-close i {
    width: 20px;
    height: 20px;
}

.network-selector-body {
    padding: 12px;
    overflow-y: auto;
    flex: 1;
}

.network-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 8px;
}

.network-option:hover {
    background: #f9fafb;
}

.network-option.active {
    background: #eff6ff;
    border: 1px solid #3b82f6;
    cursor: default;
}

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

.network-option-icon i {
    width: 20px;
    height: 20px;
}

.network-option-info {
    flex: 1;
}

.network-option-name {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 2px;
}

.network-option-short {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.network-option-badge {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    color: #3b82f6;
    font-weight: 500;
    margin-top: 4px;
}

.network-option-empty {
    padding: 40px 20px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

.network-option-check {
    width: 20px;
    height: 20px;
    color: #3b82f6;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .network-selector {
        width: 95vw;
    }
    
    .network-selector-header {
        padding: 16px 20px;
    }
    
    .network-option {
        padding: 10px;
    }
    
    .network-option-icon {
        width: 36px;
        height: 36px;
    }
}

/* ====================================
   NFT IMPORT PAGE STYLES
   ====================================*/

/* Import Page Header */
.nft-import-header {
    margin-bottom: 32px;
}

.nft-import-header .page-title-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Wallet Connection Status */
.wallet-connection-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wallet-address-display {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #f1f5f9;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
}

.network-badge-display {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #10b981;
    color: #ffffff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.network-badge-display .wrong-network {
    color: #f59e0b;
    background: #fef3c7;
}

.btn-disconnect {
    padding: 8px 16px;
    background: transparent;
    color: #ef4444;
    border: 1px solid #ef4444;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-disconnect:hover {
    background: #ef4444;
    color: #ffffff;
}

.btn-connect-metamask {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-connect-metamask:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

/* Import Container */
.nft-import-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
}

/* Tabs */
.nft-import-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 32px;
}

.nft-tab {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: -2px;
}

.nft-tab:hover {
    color: #0f172a;
}

.nft-tab.active {
    color: #3949A6;
    border-bottom-color: #3949A6;
}

/* Tab Content */
.nft-tab-content {
    display: none;
}

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

/* Scan Wallet Section */
.nft-scan-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nft-scan-info {
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    color: #64748b;
    font-size: 14px;
}

.btn-scan-wallet {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.btn-scan-wallet:hover:not(:disabled) {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.btn-scan-wallet:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Network Warning Banner */
.network-warning-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    color: #92400e;
    font-size: 14px;
}

.network-warning-banner i {
    width: 20px;
    height: 20px;
    color: #f59e0b;
}

.btn-switch-network-banner {
    margin-left: auto;
    padding: 8px 16px;
    background: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

/* Scan Results */
.nft-scan-results {
    margin-top: 24px;
}

.nft-scan-empty {
    text-align: center;
    padding: 60px 20px;
}

.scan-empty-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.scan-empty-icon i {
    width: 80px;
    height: 80px;
    color: #cbd5e1;
}

.nft-scan-empty h3 {
    color: #0f172a;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.nft-scan-empty p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

/* NFT Grid */
.nft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.nft-grid-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.nft-grid-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.nft-card-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8fafc;
}

.nft-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nft-card-info {
    padding: 16px;
}

.nft-card-info h4 {
    color: #0f172a;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.nft-card-info p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

.btn-import-nft-card {
    width: 100%;
    padding: 12px;
    background: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 0 0 12px 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-import-nft-card:hover {
    background: #059669;
}

/* Paste Link Section */
.nft-paste-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nft-paste-link-section h3 {
    color: #0f172a;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px 0;
}

.nft-input-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nft-link-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
}

.nft-link-input:focus {
    outline: none;
    border-color: #3949A6;
    box-shadow: 0 0 0 3px rgba(57, 73, 166, 0.1);
}

.btn-fetch-nft {
    padding: 12px 24px;
    background: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-fetch-nft:hover:not(:disabled) {
    background: #059669;
}

.btn-fetch-nft:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-clear {
    padding: 12px 16px;
    background: transparent;
    color: #3949A6;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}

.btn-clear:hover {
    text-decoration: underline;
}

/* Contract + Token ID Section */
.nft-contract-token-section {
    margin-top: 24px;
}

.nft-expand-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: none;
    color: #3949A6;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.nft-contract-token-fields {
    margin-top: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
}

.nft-input-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.nft-input-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nft-input-field label {
    color: #0f172a;
    font-size: 14px;
    font-weight: 500;
}

.nft-contract-input,
.nft-token-input {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-family: monospace;
}

.nft-contract-input:focus,
.nft-token-input:focus {
    outline: none;
    border-color: #3949A6;
    box-shadow: 0 0 0 3px rgba(57, 73, 166, 0.1);
}

/* Fetched NFT Display */
.nft-fetched-display {
    margin-top: 32px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
}

.nft-fetched-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
}

.nft-fetched-image {
    width: 200px;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.nft-fetched-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nft-fetched-info h3 {
    color: #0f172a;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.nft-fetched-collection {
    color: #64748b;
    font-size: 16px;
    margin: 0 0 24px 0;
}

.nft-fetched-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.nft-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.detail-label {
    color: #64748b;
    font-weight: 500;
}

.detail-value {
    color: #0f172a;
    font-family: monospace;
}

.copy-icon {
    width: 16px;
    height: 16px;
    color: #64748b;
    cursor: pointer;
    transition: color 0.2s ease;
}

.copy-icon:hover {
    color: #3949A6;
}

.nft-ownership-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #d1fae5;
    border-radius: 8px;
    color: #065f46;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.nft-ownership-status i {
    width: 20px;
    height: 20px;
    color: #10b981;
}

.btn-import-to-inventory {
    padding: 14px 32px;
    background: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-import-to-inventory:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

/* Info Text */
.nft-import-info {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.nft-import-info p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Wallet Connection Modal */
.wallet-connection-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.wallet-connection-modal.active {
    display: flex;
}

.wallet-modal-content {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.wallet-modal-header {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.wallet-modal-logo {
    margin-bottom: 16px;
}

.logo-square {
    width: 64px;
    height: 64px;
    background: #10b981;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto;
}

.wallet-modal-header h2 {
    color: #0f172a;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.wallet-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #64748b;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.wallet-modal-close:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.wallet-modal-body {
    padding: 24px;
}

.wallet-modal-description {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 24px 0;
    text-align: center;
}

.wallet-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wallet-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wallet-option:hover {
    border-color: #3949A6;
    background: #f8fafc;
}

.wallet-option-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.wallet-option-info h3 {
    color: #0f172a;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.wallet-installed-badge {
    padding: 4px 12px;
    background: #10b981;
    color: #ffffff;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.wallet-connecting {
    text-align: center;
    padding: 40px 20px;
}

.wallet-connecting .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e2e8f0;
    border-top-color: #3949A6;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

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

/* Network Switch Modal */
.network-switch-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.network-switch-modal.active {
    display: flex;
}

.network-modal-content {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.network-modal-header {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.network-modal-logo {
    margin-bottom: 16px;
}

.network-modal-header h2 {
    color: #0f172a;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.network-modal-body {
    padding: 24px;
}

.network-info-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #dbeafe;
    border-radius: 8px;
    margin-bottom: 24px;
}

.network-info-banner i {
    width: 20px;
    height: 20px;
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 2px;
}

.network-info-banner p {
    color: #1e40af;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.network-step {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.network-step.completed {
    background: #d1fae5;
}

.network-step.active {
    background: #dbeafe;
}

.network-step-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.network-step-icon i {
    width: 24px;
    height: 24px;
    color: #10b981;
}

.step-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
}

.network-step-content {
    flex: 1;
}

.network-step-content h3 {
    color: #0f172a;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.network-step-content p {
    color: #64748b;
    font-size: 14px;
    margin: 0 0 12px 0;
}

.network-step-wallet {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #ffffff;
    border-radius: 6px;
    font-size: 14px;
    font-family: monospace;
}

.network-step-wallet i {
    width: 16px;
    height: 16px;
    color: #10b981;
}

.network-disconnect-link {
    margin-left: auto;
    color: #ef4444;
    font-size: 12px;
    text-decoration: none;
}

.network-disconnect-link:hover {
    text-decoration: underline;
}

.btn-switch-network-modal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-switch-network-modal:hover:not(:disabled) {
    background: #1d4ed8;
}

.btn-switch-network-modal:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Spinner */
.spinner-small {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10001;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.toast-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-notification i {
    width: 20px;
    height: 20px;
}

.toast-success {
    border-color: #10b981;
}

.toast-success i {
    color: #10b981;
}

.toast-info {
    border-color: #2563eb;
}

.toast-info i {
    color: #2563eb;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nft-import-container {
        padding: 24px;
    }
    
    .nft-fetched-card {
        grid-template-columns: 1fr;
    }
    
    .nft-fetched-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .nft-input-group-row {
        grid-template-columns: 1fr;
    }
    
    .wallet-modal-content,
    .network-modal-content {
        max-width: 95vw;
    }
}

@media (max-width: 480px) {
    .nft-import-container {
        padding: 16px;
    }
    
    .nft-tab {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .nft-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .wallet-connection-status {
        flex-direction: column;
        align-items: flex-start;
    }
 

/* Filter Form */
.filter-form {
    margin-bottom: 1.5rem;
}

.wallet-filter-form {
    width: 100%;
}

.filter-form-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 1rem;
    align-items: end;
}

.filter-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-form-group .form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #555555;
    margin: 0;
}

.filter-form-group .form-control {
    width: 100%;
}

.filter-form-buttons {
    gap: 0.75rem;
    flex-direction: row;
}
}
 

@media (max-width: 1024px) {
    .filter-form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filter-form-buttons {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .filter-form-row {
        grid-template-columns: 1fr;
    }
    
    .filter-form-buttons {
        grid-column: 1;
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
    }
    
    .filter-form-buttons .btn {
        flex: 0 0 auto;
    }
}
 
/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.empty-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: block;
    color: #9ca3af;
}

.empty-title {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.empty-subtitle {
    font-size: 0.875rem;
}

.empty-text {
    color: #9ca3af;
}

/* Section Icon */
.section-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    vertical-align: middle;
    color: #374151;
}


/* Amount Styles */
.amount {
  font-weight: 600;
}

.amount-credit {
  color: #10b981;
}

.amount-debit {
  color: #ef4444;
}

/* Campaign Link in Wallet */
.wallet-campaign-link {
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  max-height: 2.8em;
}

.wallet-campaign-link:hover {
  color: inherit;
  text-decoration: none;
}
.event-none {
  opacity: 0.5;
  pointer-events: none;
}
.right-text-align {
  text-align: right !important;
}

.athelete-new .campaign-meta-info{
  margin-left: 50px;
}

.meta-item{
  padding-left: 0 !important;
}
.meta-sec{
  padding: 0;
}

#payoutDetailsModal .modal-header{
  justify-content: space-between;
}

/* ====================================
   PROFILE PAGE STYLES
   ====================================*/

.profile-page {
  padding-bottom: 40px;
}

.profile-header {
  margin-bottom: 30px;
}

.profile-title {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.profile-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 0;
}

.profile-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.profile-section {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #E0E0E0;
}

.section-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-icon.green {
  color: #10b981;
}

.section-icon.orange {
  color: #F97316;
}

.section-icon.blue {
  color: #3b82f6;
}

.section-title {
  font-size: 20px;
  font-weight: 590;
  color: #333;
  margin: 0;
}

.section-subtitle {
  font-size: 14px;
  color: #666;
  margin: 0;
  margin-top: 4px;
}

.profile-picture-section {
  text-align: center;
  margin-bottom: 30px;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  margin: 0 auto 15px;
  overflow: hidden;
  position: relative;
}

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

.upload-photo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #10b981;
  border-radius: 8px;
  color: #10b981;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.upload-photo-btn:hover {
  background: #10b981;
  color: #fff;
}

.upload-photo-btn input[type="file"] {
  display: none;
}

.max-size-text {
  font-size: 12px;
  color: #999;
  margin-top: 8px;
}

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

.profile-page .form-label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.profile-page .form-label .required {
  color: #ef4444;
}

.profile-page .form-control,
.profile-page .form-select {
  width: 100%;
  height: 54px;
  padding: 17px 16px;
  border: 1px solid #ADADAD;
  border-radius: 7px;
  font-size: 16px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10);
  transition: all 0.3s;
}

.profile-page .form-control:focus,
.profile-page .form-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.profile-page textarea.form-control {
  height: 100px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
}

.field-note {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

.profile-page .date-input-wrapper {
  position: relative;
}

.profile-page .date-input-wrapper .form-control {
  padding-right: 45px;
  cursor: pointer;
}

.profile-page .date-input-wrapper .calendar-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #6b7280;
}

.upload-document-area {
  border: 2px dashed #ADADAD;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background: #fafafa;
}

.upload-document-area:hover {
  border-color: #10b981;
  background: #f0fdf4;
}

.upload-document-area input[type="file"] {
  display: none;
}

.upload-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 15px;
  color: #ADADAD;
}

.upload-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 4px;
}

.upload-hint {
  font-size: 12px;
  color: #999;
}

.notification-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #E0E0E0;
}

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

.notification-label {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.profile-page .toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.profile-page .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.profile-page .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 28px;
}

.profile-page .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.profile-page .toggle-switch input:checked + .slider {
  background-color: #10b981;
}

.profile-page .toggle-switch input:checked + .slider:before {
  transform: translateX(22px);
}

.change-password-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #10b981;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.change-password-btn:hover {
  background: #059669;
}

.save-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #10b981;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 20px;
}

.save-profile-btn:hover {
  background: #059669;
}

@media (max-width: 992px) {
  .profile-content {
    grid-template-columns: 1fr;
  }
}

/* Profile Page File Upload Styles */
.profile-page .file-upload-area {
  border: 2px dashed #ADADAD;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background: #fafafa;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-page .file-upload-area:hover {
  border-color: #10b981;
  background: #f0fdf4;
}

.profile-page .file-upload-area.drag-over {
  border-color: #10b981;
  background: #f0fdf4;
  transform: scale(1.02);
}

.profile-page .upload-placeholder {
  width: 100%;
}

.profile-page .upload-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 15px;
  color: #ADADAD;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-page .upload-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 4px;
}

.profile-page .upload-text-ccc {
  color: #999;
}

.profile-page .upload-hint {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

.profile-page .uploaded-file {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-top: 10px;
}

.profile-page .file-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.profile-page .file-icon {
  width: 32px;
  height: 32px;
  color: #3b82f6;
}

.profile-page .file-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile-page .file-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
}

.profile-page .file-size {
  font-size: 0.75rem;
  color: #6b7280;
}

.profile-page .file-progress {
  flex: 1;
  max-width: 200px;
}

.profile-page .progress-bar {
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
}

.profile-page .progress-fill {
  height: 100%;
  background: #10b981;
  border-radius: 3px;
  transition: width 0.3s;
}

.profile-page .file-delete {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #ef4444;
  transition: background 0.2s;
}

.profile-page .file-delete:hover {
  background: #fee2e2;
}

.profile-page #avatarUploadContainer {
  margin-top: 15px;
}

.profile-page #avatarUploadArea {
  min-height: 120px;
}

.profile-page #documentUploadContainer {
  margin-top: 10px;
}

/* ====================================
   PROFILE PAGE AUTocomplete STYLES
   ====================================*/

/* Autocomplete Styles */
.autocomplete-container {
    position: relative;
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
}

.autocomplete-dropdown.show {
    display: block;
}

.autocomplete-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.autocomplete-item:hover,
.autocomplete-item.highlighted {
    background-color: #f8f9fa;
}

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

.user-info, .city-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar, .avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.avatar-placeholder {
    font-weight: bold;
    color: #6c757d;
}

.user-details {
    flex: 1;
}

.user-name {
    font-weight: 500;
    color: #212529;
}

.user-role {
    font-size: 0.875rem;
    color: #6c757d;
}

.city-name {
    font-weight: 500;
    color: #212529;
}

.city-location {
    font-size: 0.875rem;
    color: #6c757d;
}

.loading-state,
.no-results,
.error-state {
    padding: 15px;
    text-align: center;
    color: #6c757d;
}

.error-state {
    color: #dc3545;
}

/* ====================================
   SPONSORSHIP MODAL STYLES
   Create Sponsorship Offer Modal
   ====================================*/

/* Modal Overlay */
.sponsorship-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SweetAlert2 - Ensure it appears above sponsorship modal (z-index: 9999) */
.swal2-container {
    z-index: 10001 !important;
}

.swal2-container .swal2-popup {
    z-index: 10002 !important;
    position: relative;
}

.swal2-container .swal2-backdrop-show {
    z-index: 10000 !important;
    background-color: rgba(0, 0, 0, 0.4);
}

/* When modal is open, ensure SweetAlert appears on top */
.sponsorship-modal:has(+ .swal2-container),
body:has(.sponsorship-modal) .swal2-container {
    z-index: 10001 !important;
}

.sponsorship-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

/* Modal Content */
.sponsorship-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    overflow: hidden;
}

/* Modal Header */
.sponsorship-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid #e5e7eb;
}

.sponsorship-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.sponsorship-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: color 0.2s;
    border-radius: 8px;
}

.sponsorship-modal-close:hover {
    color: #1f2937;
    background: #f3f4f6;
}

.sponsorship-modal-close i {
    width: 20px;
    height: 20px;
}

/* Progress Indicator */
.sponsorship-progress-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 32px;
    border-bottom: 1px solid #e5e7eb;
    gap: 8px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.progress-step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.progress-step.active .progress-step-circle {
    background: #10b981;
    color: white;
}

.progress-step.completed .progress-step-circle {
    background: #10b981;
    color: white;
}

.progress-step-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.progress-step.active .progress-step-label {
    color: #1f2937;
    font-weight: 600;
}

.progress-step-line {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    margin: 0 4px;
    margin-top: -20px;
}

.progress-step.active ~ .progress-step-line,
.progress-step.completed ~ .progress-step-line {
    background: #10b981;
}

/* Modal Body */
.sponsorship-modal-body {
    padding: 32px;
    overflow-y: auto;
    flex: 1;
}

.sponsorship-modal-step {
    animation: fadeIn 0.3s ease-in;
}

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

.sponsorship-step-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.sponsorship-step-description {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

/* Form Styles */
.sponsorship-form-group {
    margin-bottom: 20px;
}

.sponsorship-form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.sponsorship-form-label .required {
    color: #ef4444;
    margin-left: 2px;
}

.sponsorship-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #1f2937;
    transition: all 0.2s;
    background: white;
}

.sponsorship-form-control:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.sponsorship-form-control::placeholder {
    color: #9ca3af;
}

.sponsorship-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Radio Buttons */
.sponsorship-type-radios,
.payment-trigger-radios {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.radio-label-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 14px;
    color: #374151;
}

.radio-label-custom:hover {
    border-color: #10b981;
    background: #f0fdf4;
}

.radio-label-custom input[type="radio"] {
    margin: 0;
    cursor: pointer;
}

.radio-label-custom input[type="radio"]:checked + span,
.radio-label-custom:has(input[type="radio"]:checked) {
    border-color: #10b981;
    background: #f0fdf4;
    color: #059669;
    font-weight: 500;
}

/* Checkboxes */
.visibility-checkboxes {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.checkbox-button {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 14px;
    color: #374151;
}

.checkbox-button:hover {
    border-color: #10b981;
    background: #f0fdf4;
}

.checkbox-button input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
}

.checkbox-button:has(input[type="checkbox"]:checked) {
    border-color: #10b981;
    background: #f0fdf4;
    color: #059669;
    font-weight: 500;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
}

/* Date Input Wrapper */
.date-input-wrapper {
    position: relative;
}

.date-input-wrapper .calendar-icon {
    position: absolute;
    right: 12px;
    top: 23px;
    /* transform: translateY(-50%); */
    color: #6b7280;
    pointer-events: none;
}

.date-input-wrapper .calendar-icon i {
    width: 18px;
    height: 18px;
}

/* Review Summary */
.sponsorship-review-summary {
    background: #f9fafb;
    border-radius: 12px;
    padding: 24px;
    margin-top: 16px;
}

.review-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.review-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.review-value {
    font-size: 14px;
    color: #1f2937;
    font-weight: 600;
}

/* Modal Footer */
.sponsorship-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-top: 1px solid #e5e7eb;
    gap: 12px;
}

.sponsorship-btn-cancel {
    padding: 12px 24px;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
}

.sponsorship-btn-cancel:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.sponsorship-btn-continue,
.sponsorship-btn-submit {
    padding: 12px 24px;
    background: #10b981;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: auto;
}

.sponsorship-btn-continue:hover,
.sponsorship-btn-submit:hover {
    background: #059669;
}

.sponsorship-btn-continue:disabled,
.sponsorship-btn-submit:disabled {
    background: #d1d5db;
    cursor: not-allowed;
}

.sponsorship-btn-back {
    padding: 12px 24px;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
}

.sponsorship-btn-back:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

/* Autocomplete Dropdown */
.athlete-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    margin-top: 4px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10000;
}

.athlete-autocomplete-dropdown::-webkit-scrollbar {
    width: 6px;
}

.athlete-autocomplete-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.athlete-autocomplete-dropdown::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.athlete-autocomplete-dropdown::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.athlete-autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s;
}

.athlete-autocomplete-item:hover,
.athlete-autocomplete-item.active {
    background: #f0fdf4;
    border-left: 3px solid #10b981;
}

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

.athlete-autocomplete-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.4;
}

.athlete-autocomplete-details {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
    line-height: 1.4;
}

/* Loading animation for autocomplete */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Step 2 Field Helper Text */
.sponsorship-field-helper {
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
    margin-bottom: 8px;
    font-weight: 400;
}

/* Add Item Button */
.sponsorship-add-item-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 6px 12px;
    background: transparent;
    border: none;
    color: #3b82f6;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.sponsorship-add-item-btn:hover {
    color: #2563eb;
}

.sponsorship-add-item-btn i {
    color: #3b82f6;
}

/* Dynamic Inputs Container */
.sponsorship-dynamic-inputs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
}

/* Input with Remove Button */
.sponsorship-input-with-remove {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.sponsorship-input-with-remove .sponsorship-form-control {
    flex: 1;
    margin-bottom: 0;
}

/* Remove Input Button */
.sponsorship-remove-input-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.sponsorship-remove-input-btn:hover {
    background: #fee2e2;
    border-color: #ef4444;
    color: #ef4444;
}

.sponsorship-remove-input-btn i {
    width: 16px;
    height: 16px;
    color: inherit;
}

/* Escrow Information Box */
.sponsorship-escrow-info {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #f5f3ff;
    border: 1px solid #3b82f6;
    border-radius: 8px;
    margin-bottom: 24px;
}

.escrow-info-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
}

.escrow-info-content {
    flex: 1;
}

.escrow-info-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.escrow-info-text {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

/* Milestones Container */
.sponsorship-milestones-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

/* Milestone Item */
.sponsorship-milestone-item {
    padding: 20px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

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

.milestone-number {
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
}

.milestone-delete-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

.milestone-delete-btn:hover {
    background: #fee2e2;
    border-color: #ef4444;
    color: #ef4444;
}

.milestone-delete-btn i {
    width: 16px;
    height: 16px;
    color: inherit;
}

/* Add Milestone Button */
.sponsorship-add-milestone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #3b82f6;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 20px;
}

.sponsorship-add-milestone-btn:hover {
    background: #2563eb;
}

.sponsorship-add-milestone-btn i {
    width: 16px;
    height: 16px;
    color: white;
}

/* Milestones Summary */
.sponsorship-milestones-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-top: 20px;
}

.milestone-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.milestone-summary-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.milestone-summary-value {
    font-size: 14px;
    color: #1f2937;
    font-weight: 600;
}

/* Payment Method Step Styles */
.sponsorship-secure-payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #10b981;
    border: 1px solid #10b981;
    border-radius: 20px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.sponsorship-secure-payment-badge i {
    width: 16px;
    height: 16px;
    color: white;
}

.sponsorship-existing-card-section {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}

.sponsorship-existing-card-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 16px;
}

.sponsorship-existing-card-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3b82f6;
}

.sponsorship-existing-card-checkbox .checkbox-label {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
}

.sponsorship-existing-card-details {
    margin-top: 12px;
    padding: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
}

.existing-card-display {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.existing-card-brand {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    text-transform: uppercase;
}

.existing-card-number {
    font-size: 16px;
    font-weight: 500;
    color: #4b5563;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.existing-card-expiry {
    font-size: 12px;
    color: #6b7280;
}

.sponsorship-payment-form {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}

.card-input-wrapper {
    position: relative;
}

.card-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #6b7280;
    pointer-events: none;
    z-index: 1;
}

.card-input-wrapper .sponsorship-form-control {
    padding-left: 40px;
}

.sponsorship-verify-card-btn {
    width: 100%;
    padding: 12px 24px;
    background: #f59e0b;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.sponsorship-verify-card-btn:hover:not(:disabled) {
    background: #d97706;
}

.sponsorship-verify-card-btn:disabled {
    background: #d1d5db;
    cursor: not-allowed;
}

.sponsorship-verify-card-btn i {
    width: 16px;
    height: 16px;
    color: white;
}

.sponsorship-payment-verified {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f0fdf4;
    border: 1px solid #10b981;
    border-radius: 8px;
    margin-top: 16px;
}

.sponsorship-payment-verified i {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

.verified-title {
    font-size: 14px;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 2px;
}

.verified-text {
    font-size: 13px;
    color: #047857;
}

.sponsorship-payment-info {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #eff6ff;
    border: 1px solid #3b82f6;
    border-radius: 8px;
}

.payment-info-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
}

.payment-info-content {
    flex: 1;
}

.payment-info-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.payment-info-text {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .sponsorship-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .sponsorship-modal-header,
    .sponsorship-modal-body,
    .sponsorship-modal-footer {
        padding: 20px;
    }
    
    .sponsorship-form-row {
        grid-template-columns: 1fr;
    }
    
    .progress-step-label {
        font-size: 11px;
    }
    
    .progress-step-circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

/* Review Section Styles */
.sponsorship-review-section {
    margin-bottom: 32px;
}

.review-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 16px 0;
}

.review-recipient-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.review-recipient-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #3b82f6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
}

.review-recipient-info {
    flex: 1;
}

.review-recipient-name {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.review-recipient-details {
    font-size: 14px;
    color: #6b7280;
}

.review-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.review-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-detail-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.review-detail-value {
    font-size: 16px;
    color: #1f2937;
    font-weight: 600;
}

.review-value-highlight {
    color: #10b981;
    background: #d1fae5;
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
    width: fit-content;
}

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

.review-milestone-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.review-milestone-title {
    font-size: 14px;
    color: #1f2937;
    font-weight: 500;
}

.review-milestone-amount {
    font-size: 14px;
    color: #10b981;
    font-weight: 600;
}

.review-notes-box {
    padding: 16px;
    background: #fef3c7;
    border-radius: 8px;
    border: 1px solid #fde68a;
    font-size: 14px;
    color: #78350f;
    line-height: 1.5;
}

.review-payment-card {
    padding: 16px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 12px;
}

.review-payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #3b82f6;
    color: white;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

.review-card-number {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.review-cardholder-name {
    font-size: 14px;
    color: #6b7280;
}

.review-payment-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #fef3c7;
    border-radius: 8px;
    border: 1px solid #fde68a;
    font-size: 14px;
    color: #78350f;
}

.review-payment-info i {
    color: #f59e0b;
}

/* Review Items List (Deliverables & Benefits) */
.review-items-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.review-item-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    color: #1f2937;
    line-height: 1.4;
}

.review-item-empty {
    padding: 12px;
    color: #9ca3af;
    font-size: 14px;
    font-style: italic;
}

@media (max-width: 768px) {
    .review-details-grid {
        grid-template-columns: 1fr;
    }
    
    .review-milestone-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .review-items-list {
        flex-direction: column;
    }
    
    .review-item-tag {
        width: 100%;
    }
}

/* ============================================
   Sent Offers Page Styles
   ============================================ */

.sponsorships-container {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.stat-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 8px;
}

.stat-subtext {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    background: white;
    border: 1px solid #e5e7eb;
    color: #374151;
    transition: all 0.2s;
    cursor: pointer;
    display: inline-block;
}

.filter-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.filter-btn.active {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

/* Offer Cards Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.offer-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.offer-card.declined-card {
    border-left: 4px solid #EF4444;
}

/* Offer Card Header */
.offer-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.offer-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.offer-card-info {
    flex: 1;
    min-width: 0;
}

.offer-card-name {
    font-weight: 600;
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 4px;
    line-height: 1.2;
}

.offer-card-meta {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.3;
}

.offer-card-status {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.offer-card-status-icon {
    width: 16px;
    height: 16px;
}

.offer-card-status-text {
    font-size: 13px;
    font-weight: 500;
}

.offer-card-status.pending .offer-card-status-text {
    color: #f59e0b;
}

.offer-card-status.accepted .offer-card-status-text {
    color: #10b981;
}

.offer-card-status.declined .offer-card-status-text {
    color: #EF4444;
}

.offer-card-status.expired .offer-card-status-text {
    color: #6b7280;
}

/* Offer Type */
.offer-card-type {
    margin-bottom: 12px;
}

.offer-card-type-title {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    line-height: 1.4;
    margin-bottom: 2px;
}

.offer-card-type-subtitle {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
}

/* Offer Details Row */
.offer-card-details {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.offer-card-detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #374151;
}

.offer-card-detail-item .detail-icon {
    width: 16px;
    height: 16px;
    color: #6b7280;
}

.offer-card-detail-value {
    font-weight: 600;
    color: #1f2937;
}

/* Sent Date Row */
.offer-card-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
    margin-bottom: 16px;
}

.offer-card-sent-date {
    font-size: 13px;
    color: #6b7280;
}

/* Status Date */
.offer-card-status-date {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 0;
}

.offer-card-status-date.expires {
    color: #f59e0b;
}

.offer-card-status-date.accepted {
    color: #10b981;
}

.offer-card-status-date.declined {
    color: #EF4444;
}

/* Action Buttons */
.offer-card-actions {
    display: flex;
    gap: 12px;
}

.btn-view-details {
    flex: 1;
    padding: 10px 16px;
    background: #f59e0b;
    border: none;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-view-details:hover {
    background: #d97706;
    color: white;
}

.btn-edit {
    padding: 10px 16px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
    min-width: 44px;
}

.btn-edit:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
}

.btn-edit-icon {
    width: 16px;
    height: 16px;
    color: #374151;
}

.btn-resend {
    padding: 10px 16px;
    background: #10b981;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
    min-width: 44px;
}

.btn-resend:hover {
    background: #059669;
}

.btn-resend-icon {
    width: 16px;
    height: 16px;
    color: white;
}

/* Responsive Layout */
@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .filter-buttons {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .offer-card-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ============================================
   Sponsorship Details Page Styles
   ============================================ */

.sponsorship-details-page {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Back Link */
.sponsorship-back-link {
    margin-bottom: 20px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.back-link:hover {
    color: #374151;
}

/* Profile Card */
.sponsorship-profile-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.profile-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.profile-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 20px;
    flex-shrink: 0;
}

.profile-info {
    flex: 1;
    min-width: 0;
}

.profile-name {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
}

.profile-name-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.profile-meta {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.profile-followers {
    font-size: 13px;
    color: #6b7280;
}

.profile-website {
    font-size: 13px;
    margin-top: 4px;
}

.profile-website a {
    color: #3b82f6;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.profile-website a:hover {
    text-decoration: underline;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: #d1fae5;
    color: #065f46;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.sponsor-logo {
    flex-shrink: 0;
}

.logo-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f59e0b 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
}

.profile-status-badge.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.profile-status-badge.status-active,
.profile-status-badge.status-accepted {
    background: #d1fae5;
    color: #065f46;
}

.profile-status-badge.status-declined {
    background: #fee2e2;
    color: #991b1b;
}

.profile-status-badge.status-expired {
    background: #f3f4f6;
    color: #6b7280;
}

/* Achievements */
.profile-achievements {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.achievements-title {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
}

/* Section Cards */
.sponsorship-section-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.section-content {
    color: #374151;
}

/* Offer Details */
.offer-type-main {
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 4px;
}

.offer-type-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.offer-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #374151;
}

/* Deliverables & Benefits Lists */
.deliverables-list,
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.deliverable-item,
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

/* Contact Information */
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    margin-bottom: 12px;
}

.contact-item a {
    color: #3b82f6;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Payment Milestones */
.payment-milestones-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.payment-progress-section {
    margin-bottom: 24px;
}

.progress-bar-container {
    width: 100%;
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-bar {
    height: 100%;
    background: #10b981;
    border-radius: 6px;
    transition: width 0.3s ease;
}

.progress-stats {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.progress-amount {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.progress-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    font-size: 14px;
    color: #6b7280;
}

.progress-detail-item {
    display: flex;
    align-items: center;
}

/* Milestones List */
.milestones-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.milestone-item {
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: white;
}

.milestone-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.milestone-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
    white-space: nowrap;
}

.milestone-number.completed {
    background: #10b981;
    color: white;
}

.milestone-number.awaiting {
    background: #f59e0b;
    color: white;
}

.milestone-number.pending {
    background: #e5e7eb;
    color: #6b7280;
}

.milestone-info {
    flex: 1;
    min-width: 0;
}

.milestone-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
}

.milestone-amount {
    font-size: 14px;
    color: #374151;
    margin-bottom: 4px;
}

.milestone-due {
    font-size: 13px;
    color: #6b7280;
}

.milestone-status-badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    flex-shrink: 0;
}

.milestone-status-badge.status-completed {
    background: #d1fae5;
    color: #065f46;
}

.milestone-status-badge.status-awaiting {
    background: #fef3c7;
    color: #92400e;
}

.milestone-status-badge.status-pending {
    background: #f3f4f6;
    color: #6b7280;
}

.milestone-status-badge.status-disputed {
    background: #fee2e2;
    color: #991b1b;
}

.milestone-status-badge.status-submitted {
    background: #dbeafe;
    color: #1e40af;
}

.milestone-number.disputed {
    background: #ef4444;
    color: white;
}

.milestone-number.submitted {
    background: #3b82f6;
    color: white;
}

.milestone-dates {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #6b7280;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
}

.milestone-dispute-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.milestone-dispute-info .dispute-date {
    color: #991b1b;
    font-weight: 600;
}

.milestone-dispute-info .admin-dispute-date {
    color: #059669;
    font-weight: 500;
}

.milestone-dispute-info .admin-dispute-pending {
    color: #f59e0b;
    font-style: italic;
}

.milestone-evidence {
    margin-top: 12px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
}

.evidence-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 4px;
}

.evidence-text {
    font-size: 14px;
    color: #374151;
}

.milestone-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.btn-approve-payment {
    padding: 10px 20px;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.btn-approve-payment:hover {
    background: #059669;
}

.btn-dispute {
    padding: 10px 20px;
    background: white;
    color: #ef4444;
    border: 1px solid #ef4444;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-dispute:hover {
    background: #fee2e2;
}

.btn-submit-approval {
    padding: 10px 20px;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit-approval:hover {
    background: #059669;
}

/* Notes Section */
.notes-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* Dates Section */
.sponsorship-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
    font-size: 14px;
}

.date-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.date-label {
    color: #6b7280;
    font-weight: 500;
}

.date-value {
    color: #374151;
    font-weight: 600;
}

.date-value.expires {
    color: #f59e0b;
}

.date-value.accepted {
    color: #10b981;
}

.date-value.declined {
    color: #ef4444;
}

/* Decline Reason Box */
.decline-reason-box {
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.decline-reason-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #991b1b;
}

/* Action Buttons */
.sponsorship-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-action {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-resend {
    background: #10b981;
    color: white;
}

.btn-resend:hover {
    background: #059669;
    color: white;
}

.btn-edit-resend {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.btn-edit-resend:hover {
    background: #e5e7eb;
    color: #1f2937;
}

.btn-accept-large {
    flex: 1;
    background: #10b981;
    color: white;
    padding: 14px 24px;
    font-size: 16px;
}

.btn-accept-large:hover {
    background: #059669;
    color: white;
}

.btn-decline-large {
    flex: 1;
    background: #ef4444;
    color: white;
    padding: 14px 24px;
    font-size: 16px;
}

.btn-decline-large:hover {
    background: #dc2626;
    color: white;
}

.btn-withdraw {
    background: #ef4444;
    color: white;
}

.btn-withdraw:hover {
    background: #dc2626;
    color: white;
}

/* Partnership Active Banner */
.partnership-active-banner {
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.partnership-active-banner i {
    color: #10b981;
    flex-shrink: 0;
}

.banner-content {
    flex: 1;
}

.banner-title {
    font-size: 16px;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 4px;
}

.banner-text {
    font-size: 14px;
    color: #047857;
}

.w-80 {
  width: 80px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .sponsorship-details-page {
        padding: 16px;
    }
    
    .profile-card-header {
        flex-wrap: wrap;
    }
    
    .profile-status-badge {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
    }
    
    .offer-metrics {
        flex-direction: column;
        gap: 12px;
    }
    
    .sponsorship-actions {
        flex-direction: column;
    }
    
    .btn-accept-large,
    .btn-decline-large {
        width: 100%;
    }
    
    .milestone-header {
        flex-wrap: wrap;
    }
    
    .milestone-status-badge {
        width: 100%;
        text-align: center;
        margin-top: 12px;
    }
    
    .milestone-actions {
        flex-direction: column;
    }
    
    
    .btn-approve-payment,
    .btn-dispute,
    .btn-submit-approval {
        width: 100%;
        justify-content: center;
    }
}

/* ====================================
   RECEIVED OFFERS PAGE STYLES
   ====================================*/

/* Received Offer Card */
.received-offer-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.received-offer-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.received-offer-card.declined-card {
    opacity: 0.7;
}

/* Received Offer Header */
.received-offer-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sponsor-logo-square {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sponsor-info {
    flex: 1;
    min-width: 0;
}

.sponsor-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.sponsor-name {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.verified-badge-small {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: #d1fae5;
    color: #065f46;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}

.verified-badge-small i {
    color: #10b981;
}

.sponsor-industry {
    font-size: 13px;
    color: #6b7280;
}

.offer-status-badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.offer-status-badge.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.offer-status-badge.status-active {
    background: #d1fae5;
    color: #065f46;
}

.offer-status-badge.status-declined {
    background: #fee2e2;
    color: #991b1b;
}

.offer-status-badge.status-expired {
    background: #f3f4f6;
    color: #6b7280;
}

/* Received Offer Details */
.received-offer-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offer-title-main {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.offer-type-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #f3f4f6;
    color: #4b5563;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    width: fit-content;
}

/* Received Offer Metrics */
.received-offer-metrics {
    display: flex;
    gap: 24px;
    padding: 12px 0;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.metric-icon {
    width: 16px;
    height: 16px;
    color: #6b7280;
}

.metric-value {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

/* Received Offer Dates */
.received-offer-dates {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.date-item {
    font-size: 13px;
    color: #6b7280;
}

.date-item.date-expires {
    color: #f59e0b;
    font-weight: 500;
}

.date-item.date-accepted {
    color: #10b981;
    font-weight: 500;
}

/* Received Offer Actions */
.received-offer-actions {
    display: flex;
    gap: 12px;
    padding-top: 8px;
}

.btn-view-details {
    flex: 1;
    padding: 10px 16px;
    background: #f3f4f6;
    color: #374151;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid #e5e7eb;
}

.btn-view-details:hover {
    background: #e5e7eb;
    color: #111827;
}

.btn-review-offer {
    flex: 1;
    padding: 10px 16px;
    background: #10b981;
    color: white;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-review-offer:hover {
    background: #059669;
    color: white;
}

/* Responsive for Received Offers */
@media (max-width: 768px) {
    .received-offer-header {
        flex-wrap: wrap;
    }
    
    .offer-status-badge {
        width: 100%;
        text-align: center;
    }
    
    .received-offer-metrics {
        flex-direction: column;
        gap: 12px;
    }
    
    .received-offer-actions {
        flex-direction: column;
    }
    
    .btn-view-details,
    .btn-review-offer {
        width: 100%;
    }
}

/* ====================================
   ACCEPT SPONSORSHIP MODAL STYLES
   ====================================*/

.accept-sponsorship-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accept-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.accept-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 10000;
}

.accept-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid #e5e7eb;
}

.accept-modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.accept-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.accept-modal-close:hover {
    color: #111827;
}

.accept-modal-close i {
    width: 20px;
    height: 20px;
}

.accept-modal-body {
    padding: 24px 28px;
}

/* Sponsor Card */
.accept-sponsor-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.accept-sponsor-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.sponsor-logo-icon {
    width: 28px;
    height: 28px;
    color: white;
}

.accept-sponsor-info {
    flex: 1;
    min-width: 0;
}

.accept-sponsor-name {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.accept-sponsor-type {
    font-size: 14px;
    color: #6b7280;
}

/* Value Section */
.accept-value-section {
    background: #10b981;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
}

.accept-value-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.accept-value-amount {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.accept-value-duration {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* Terms Section */
.accept-terms-section {
    margin-bottom: 20px;
}

.accept-terms-title {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 12px;
}

.accept-deliverables-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accept-deliverables-list li {
    font-size: 14px;
    color: #374151;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.accept-deliverables-list li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #6b7280;
    font-weight: bold;
}

/* Agreement Box */
.accept-agreement-box {
    background: #fef3c7;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.accept-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.accept-terms-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.accept-checkbox-text {
    font-size: 14px;
    color: #92400e;
    line-height: 1.5;
    user-select: none;
}

/* Modal Footer */
.accept-modal-footer {
    display: flex;
    gap: 12px;
    padding: 20px 28px;
    border-top: 1px solid #e5e7eb;
    justify-content: flex-end;
}

.accept-btn-cancel {
    padding: 12px 24px;
    background: white;
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.accept-btn-cancel:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.accept-btn-confirm {
    padding: 12px 24px;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.accept-btn-confirm:hover {
    background: #059669;
}

.accept-btn-confirm:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.accept-btn-icon {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .accept-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .accept-modal-header,
    .accept-modal-body,
    .accept-modal-footer {
        padding: 20px;
    }
    
    .accept-modal-footer {
        flex-direction: column-reverse;
    }
    
    .accept-btn-cancel,
    .accept-btn-confirm {
        width: 100%;
        justify-content: center;
    }
}

/* Decline Reason Box */
.decline-reason-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.decline-reason-header {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #991b1b;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.decline-reason-header i {
    flex-shrink: 0;
}

.decline-reason-text {
    color: #991b1b;
    font-size: 14px;
    line-height: 1.5;
    padding-left: 32px;
    margin-top: 4px;
}

/* SweetAlert2 Textarea Styling */
.swal2-textarea {
    width: 100% !important;
    min-height: 100px;
    max-height: 150px;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    resize: none;
    overflow-y: auto;
    box-sizing: border-box;
    margin: 0;
    display: block;
}

.swal2-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Prevent scrolling in SweetAlert modal */
.swal2-popup-no-scroll {
    overflow: visible !important;
}

.swal2-popup-no-scroll .swal2-html-container {
    overflow: visible !important;
    max-height: none !important;
    padding: 0 !important;
}

.swal2-html-container-no-scroll {
    overflow: visible !important;
    max-height: none !important;
}

/* Fix textarea alignment in SweetAlert */
.swal2-popup .swal2-html-container {
    text-align: center;
    padding: 1em 1.6em;
    margin: 0;
}

.swal2-popup .swal2-html-container textarea {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
}

/* Add margin to decline modal content */
.swal2-popup-no-scroll .swal2-html-container {
    padding: 1em 1.6em !important;
    margin: 0 !important;
}

.swal2-popup-no-scroll .swal2-html-container > div {
    margin-bottom: 16px;
}

.swal2-popup-no-scroll .swal2-html-container textarea {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
#st-1 .st-btn {    display: inline-block !important;}

/* Google Translate Widget Styling */
.google-translate-wrapper {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

/* Hide the default Google Translate banner */
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Style the Google Translate dropdown container */
#google_translate_element {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    z-index: 1000;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px;
    min-width: 150px;
}

#google_translate_element.show {
    display: block !important;
}

/* Style the Google Translate select dropdown */
#google_translate_element select {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 35px 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    outline: none;
    width: 100%;
    min-width: 150px;
    height: auto;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

#google_translate_element select:hover {
    border-color: #3b82f6;
}

#google_translate_element select:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-color: #3b82f6;
}

/* Style the Google Translate div wrapper */
#google_translate_element .goog-te-gadget {
    font-family: inherit;
    font-size: 14px;
    color: #333;
}

#google_translate_element .goog-te-gadget-simple {
    background-color: transparent;
    border: none;
    padding: 0;
    font-size: 14px;
    line-height: normal;
}

#google_translate_element .goog-te-gadget-simple .goog-te-menu-value {
    color: #333;
    font-size: 14px;
}

#google_translate_element .goog-te-gadget-simple .goog-te-menu-value span {
    color: #333;
    display: inline;
}

/* Hide Google Translate branding */
#google_translate_element .goog-te-gadget-icon {
    display: none !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #google_translate_element {
        right: 0;
        min-width: 140px;
    }
    
    #google_translate_element select {
        min-width: 140px;
        font-size: 13px;
        padding: 7px 30px 7px 10px;
    }
}

/* Custom Language Dropdown Styling */
.custom-language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0;
    min-width: 500px;
    max-width: 600px;
    max-height: 500px;
    overflow-y: auto;
    z-index: 1001;
    display: none;
}

.custom-language-dropdown.show {
    display: block !important;
}

.language-dropdown-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 10px 10px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.language-dropdown-header strong {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 8px;
}

.language-option {
    display: block;
    padding: 10px 12px;
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-align: left;
}

.language-option:hover {
    background-color: #eff6ff;
    color: #2563eb;
}

/* Mobile responsive for custom language dropdown */
@media (max-width: 768px) {
    .custom-language-dropdown {
        right: 0;
        min-width: 300px;
        max-width: 90vw;
        max-height: 400px;
    }
    
    .language-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 6px;
    }
    
    .language-option {
        font-size: 13px;
        padding: 8px 10px;
    }
    
    .language-dropdown-header {
        padding: 12px 16px;
    }
    
    .language-dropdown-header strong {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .custom-language-dropdown {
        min-width: 280px;
        max-width: 95vw;
    }
    
    .language-grid {
        grid-template-columns: 1fr;
    }
}



/* ====================================
   DISCOVER PAGE STYLES
   ====================================*/

/* Hero Section */
.discover-hero-section {
    background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 100%);
    padding: 60px 0;
    margin-bottom: 40px;
}

.discover-hero-content {
    text-align: center;
    color: #ffffff;
}

.discover-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.discover-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Main Section */
.discover-main-section {
    padding: 0 0 60px;
}

.discover-section-header {
    margin-bottom: 40px;
}

.discover-section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 24px;
}

.discover-controls-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Filter Buttons */
.discover-filter-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #4B5563;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    display: inline-block;
}

.filter-btn:hover {
    background: #F9FAFB;
    color: #1F2937;
    text-decoration: none;
}

.filter-btn.active {
    background: #6B46C1;
    color: #ffffff;
    border-color: #6B46C1;
}

/* Search Wrapper */
.discover-search-wrapper {
    flex: 1;
    max-width: 400px;
    margin-left: auto;
}

.discover-search-field {
    position: relative;
    display: flex;
    align-items: center;
}

.discover-search-input {
    width: 100%;
    padding: 12px 50px 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    color: #1F2937;
    background: #ffffff;
    transition: all 0.3s ease;
}

.discover-search-input:focus {
    outline: none;
    border-color: #6B46C1;
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.discover-search-input::placeholder {
    color: #9CA3AF;
}

.discover-search-icon {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
}

.discover-clear-search {
    position: absolute;
    right: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    transition: color 0.2s ease;
}

.discover-clear-search:hover {
    color: #1F2937;
}

.discover-clear-search.hide {
    display: none;
}

.discover-clear-search.show {
    display: flex;
}

/* Grid Container */
.discover-grid-container {
    margin-top: 40px;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* Discover Card */
.discover-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.discover-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.discover-card-header {
    background: #F9FAFB;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.discover-card-sport-banner {
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: #E5E7EB;
    position: relative;
}

.discover-card-sport-banner-fallback {
    background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 100%);
}

.discover-card-sport-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discover-card-header-content {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.discover-card-avatar-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    margin-top: -40px;
    margin-left: 20px;
    z-index: 2;
}

.discover-card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.discover-card-avatar-initials {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #6B46C1;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Initial Color Variations */
.discover-initial-color-1 {
    background: #10B981;
    color: #ffffff;
}

.discover-initial-color-2 {
    background: #F59E0B;
    color: #ffffff;
}

.discover-initial-color-3 {
    background: #6B46C1;
    color: #ffffff;
}

.discover-initial-color-4 {
    background: #3B82F6;
    color: #ffffff;
}

.discover-initial-color-5 {
    background: #EF4444;
    color: #ffffff;
}

.discover-initial-color-6 {
    background: #6B7280;
    color: #ffffff;
}

.discover-initial-color-7 {
    background: #1F2937;
    color: #ffffff;
}

.discover-initial-color-8 {
    background: #059669;
    color: #ffffff;
}

.discover-card-verified {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.discover-card-badge {
    background: #6B46C1;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

.discover-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.discover-card-body-with-banner {
    padding-top: 50px;
}

.discover-card-name {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.discover-card-sport {
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.discover-card-location {
    font-size: 13px;
    color: #9CA3AF;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.discover-card-description {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0 0 16px 0;
    flex: 1;
}

.discover-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.discover-tag {
    background: #F3F4F6;
    color: #4B5563;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.discover-card-stats {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 20px;
}

.discover-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.discover-stat-label {
    font-size: 12px;
    color: #9CA3AF;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discover-stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #1F2937;
}

.discover-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    /* margin-top: 20px; */
}

.discover-card-button {
    background: #10B981;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.discover-card-button:hover {
    background: #059669;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.discover-card-social {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.discover-social-icon {
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    width: 20px;
    height: 20px;
}

.discover-social-icon:hover {
    color: #6B46C1;
}

/* CTA Section */
.discover-cta-section {
    background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 100%);
    padding: 60px 0;
    margin-top: 60px;
}

.discover-cta-content {
    text-align: center;
    color: #ffffff;
}

.discover-cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.discover-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.discover-cta-button {
    background: #10B981;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.discover-cta-button:hover {
    background: #059669;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Pagination */
.discover-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.discover-no-results {
    text-align: center;
    padding: 60px 20px;
    color: #6B7280;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .discover-hero-content h1 {
        font-size: 32px;
    }
    
    .discover-hero-content p {
        font-size: 16px;
    }
    
    .discover-section-header h2 {
        font-size: 24px;
    }
    
    .discover-controls-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .discover-filter-buttons {
        justify-content: center;
    }
    
    .discover-search-wrapper {
        max-width: 100%;
        margin-left: 0;
    }
    
    .discover-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .discover-cta-content h2 {
        font-size: 28px;
    }
    
    .discover-cta-content p {
        font-size: 16px;
    }
}

/* Autocomplete Dropdown */
.athlete-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    margin-top: 4px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: none;
}

.athlete-autocomplete-dropdown.show {
    display: block;
}

.athlete-autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #F3F4F6;
    transition: background 0.2s ease;
}

.athlete-autocomplete-item:hover {
    background: #F9FAFB;
}

.athlete-autocomplete-item:last-child {
    border-bottom: none;
}
/* ====================================
   DISCOVER PROFILE PAGE STYLES
   ====================================*/

/* Back Link */
.discover-profile-back {
    padding: 16px 0;
    background: #ffffff;
    border-bottom: 1px solid #E5E7EB;
}

.discover-profile-back-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.discover-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6B7280;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    background: #F9FAFB;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    transition: all 0.2s ease;
}

.discover-back-link:hover {
    color: #1F2937;
    background: #F3F4F6;
    text-decoration: none;
}

.discover-profile-role-badge {
    background: #6B46C1;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Profile Header */
.discover-profile-header {
    background: #ffffff;
    padding: 32px 0;
    border-bottom: 1px solid #E5E7EB;
}

.discover-profile-header-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.discover-profile-avatar-section {
    position: relative;
    flex-shrink: 0;
}

.discover-profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.discover-profile-avatar-initials {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #6B46C1;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discover-profile-verified {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 28px;
    height: 28px;
    background: #F97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border: 2px solid #ffffff;
}

.discover-profile-verified svg {
    width: 14px;
    height: 14px;
    stroke: #ffffff;
}

.discover-profile-info {
    flex: 1;
    min-width: 0;
}

.discover-profile-name {
    font-size: 32px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.discover-profile-details {
    margin-bottom: 0;
}

.discover-profile-sport {
    font-size: 16px;
    color: #6B46C1;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.discover-profile-location {
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.discover-profile-school {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.discover-profile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    min-width: 140px;
}

.discover-action-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.discover-btn-follow {
    background: #10B981;
    color: #ffffff;
}

.discover-btn-follow:hover {
    background: #059669;
    color: #ffffff;
    text-decoration: none;
}

.discover-btn-message {
    background: #ffffff;
    color: #F97316;
    border: 1px solid #E5E7EB;
}

.discover-btn-message:hover {
    background: #F9FAFB;
    color: #F97316;
    text-decoration: none;
}

.discover-btn-sponsor {
    background: #F97316;
    color: #ffffff;
}

.discover-btn-sponsor:hover {
    background: #EA580C;
    color: #ffffff;
    text-decoration: none;
}

.discover-btn-join,
.discover-btn-invite {
    background: #10B981;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.discover-btn-join:hover,
.discover-btn-invite:hover {
    background: #059669;
    color: #ffffff;
    text-decoration: none;
}

/* Main Content */
.discover-profile-content {
    padding: 40px 0;
    background: #F9FAFB;
}

.discover-profile-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid #E5E7EB;
}

.discover-profile-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.discover-profile-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discover-section-subtitle {
    margin-top: 24px;
}

.discover-profile-quote {
    font-size: 16px;
    font-style: italic;
    color: #3B82F6;
    margin: 0 0 16px 0;
    border-left: 4px solid #3B82F6;
    padding-left: 16px;
    font-weight: 500;
    line-height: 1.6;
}

.discover-profile-description {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.discover-profile-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.discover-social-icon-link {
    color: #EF4444;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    transition: all 0.2s ease;
}

.discover-social-icon-link:hover {
    color: #DC2626;
    background: #FEF2F2;
    border-color: #FCA5A5;
}

.discover-social-twitter,
.discover-social-instagram {
    color: #EF4444;
}

/* Key Stats Grid */
.discover-key-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.discover-stat-card {
    padding: 20px 16px;
    border-radius: 12px;
    text-align: center;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.discover-stat-card-purple {
    background: #6B46C1;
    color: #ffffff;
}

.discover-stat-card-blue {
    background: #3B82F6;
    color: #ffffff;
}

.discover-stat-card-light-blue {
    background: #E0F2FE;
    color: #0369A1;
}

.discover-stat-card-orange {
    background: #FEF3C7;
    color: #F59E0B;
}

.discover-stat-card-white {
    background: #ffffff;
    color: #1F2937;
    border: 1px solid #E5E7EB;
}

.discover-stat-card-green-text {
    color: #10B981;
}

.discover-stat-number {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.discover-stat-label {
    font-size: 13px;
    color: inherit;
    opacity: 0.9;
    margin: 0;
    font-weight: 500;
}

.discover-stat-card-white .discover-stat-label {
    color: #6B7280;
    opacity: 1;
}

.discover-stat-card-light-blue .discover-stat-label {
    color: #0369A1;
    opacity: 1;
}

.discover-stat-card-orange .discover-stat-label {
    color: #F59E0B;
    opacity: 1;
}

/* Achievements Grid */
.discover-achievements-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.discover-achievement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #F9FAFB;
    border-radius: 24px;
    border: 1px solid #E5E7EB;
}

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

.discover-achievement-icon-gold {
    background: #FEF3C7;
    color: #F59E0B;
}

.discover-achievement-icon-red {
    background: #FEE2E2;
    color: #EF4444;
}

.discover-achievement-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    margin: 0;
}

/* Teams Section */
.discover-team-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #F9FAFB;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    margin-bottom: 16px;
}

.discover-team-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.discover-team-logo-green {
    background: #10B981;
}

.discover-team-info {
    flex: 1;
}

.discover-team-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 4px 0;
}

.discover-team-info p {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

/* NFT Cards */
.discover-nft-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    padding: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.discover-nft-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: #FEF3C7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F59E0B;
}

.discover-nft-title {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 12px 0;
}

.discover-nft-price {
    font-size: 24px;
    font-weight: 700;
    color: #6B46C1;
    margin: 0 0 8px 0;
}

.discover-nft-sold {
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 12px 0;
}

.discover-nft-progress {
    margin-bottom: 16px;
}

.discover-nft-progress-bar {
    width: 100%;
    height: 8px;
    background: #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
}

.discover-nft-progress-fill {
    height: 100%;
    background: #6B46C1;
    transition: width 0.3s ease;
    width: var(--progress, 0);
}

.discover-nft-button {
    display: block;
    width: 100%;
    padding: 12px;
    background: #10B981;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.discover-nft-button:hover {
    background: #059669;
    color: #ffffff;
    text-decoration: none;
}

/* Supporters Section */
.discover-supporters-count {
    font-size: 16px;
    color: #6B7280;
    margin: 0 0 16px 0;
}

.discover-supporters-avatars {
    display: flex;
    align-items: center;
    gap: -8px;
}

.discover-supporter-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-left: -8px;
}

.discover-supporter-avatar:first-child {
    margin-left: 0;
}

.discover-supporter-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: #F3F4F6;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    margin-left: -8px;
}

/* Posts Section */
.discover-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.discover-post-item {
    padding: 16px;
    background: #F9FAFB;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.discover-post-text {
    font-size: 16px;
    color: #1F2937;
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.discover-post-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: #6B7280;
}

.discover-post-date,
.discover-post-likes {
    margin: 0;
}

/* Trust & Transparency */
.discover-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.discover-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #F9FAFB;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.discover-trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.discover-trust-icon-green {
    background: #D1FAE5;
    color: #10B981;
}

.discover-trust-icon-purple {
    background: #EDE9FE;
    color: #6B46C1;
}

.discover-trust-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 4px 0;
}

.discover-trust-content p {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

/* Discover More Grid */
.discover-more-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Sidebar Sections */
.discover-sidebar-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid #E5E7EB;
}

.discover-sidebar-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 20px 0;
}

.discover-sidebar-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 12px 0;
}

.discover-sidebar-section p {
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 20px 0;
}

/* Campaign Items */
.discover-campaign-item {
    padding: 16px;
    background: #F9FAFB;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    margin-bottom: 16px;
}

.discover-campaign-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 12px 0;
}

.discover-campaign-title img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.discover-campaign-progress {
    margin-bottom: 12px;
}

.discover-campaign-progress-bar {
    width: 100%;
    height: 8px;
    background: #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
}

.discover-campaign-progress-fill {
    height: 100%;
    background: #10B981;
    transition: width 0.3s ease;
    width: var(--progress, 0);
}

.discover-campaign-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #6B7280;
}

.discover-campaign-percentage {
    font-weight: 600;
    color: #10B981;
}

.discover-campaign-button {
    display: block;
    width: 100%;
    padding: 10px;
    background: #6B46C1;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.discover-campaign-button:hover {
    background: #5B21B6;
    color: #ffffff;
    text-decoration: none;
}

/* Sponsor Cards */
.discover-sponsor-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.discover-sponsor-card {
    padding: 20px;
    background: #F9FAFB;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    text-align: center;
}

.discover-sponsor-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.discover-sponsor-icon-purple {
    background: #EDE9FE;
    color: #6B46C1;
}

.discover-sponsor-icon-green {
    background: #D1FAE5;
    color: #10B981;
}

.discover-sponsor-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 8px 0;
}

.discover-sponsor-card p {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

/* Support Buttons */
.discover-support-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.discover-support-btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.discover-support-btn-nft {
    background: #F97316;
    color: #ffffff;
}

.discover-support-btn-nft:hover {
    background: #EA580C;
    color: #ffffff;
    text-decoration: none;
}

.discover-support-btn-sponsor {
    background: #ffffff;
    color: #F97316;
    border: 1px solid #F97316;
}

.discover-support-btn-sponsor:hover {
    background: #FFF7ED;
    color: #F97316;
    text-decoration: none;
    border-color: #F97316;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .discover-key-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .discover-more-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .discover-profile-header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .discover-profile-actions {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .discover-action-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .discover-key-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .discover-trust-grid {
        grid-template-columns: 1fr;
    }
    
    .discover-achievements-grid {
        flex-direction: column;
    }
}
