/* ==========================================================================
   Make Picks Modal New Styles
   ========================================================================== */

.make-picks-modal-new .modal-dialog {
  /* max-width: 750px; */
  max-width: 1152px;
  margin: 1.75rem auto;
}

.make-picks-modal-new .modal-content {
  background: #2a2a2a;
  border: none;
  border-radius: 8px;
  overflow: hidden;
}

.make-picks-modal-new-content {
  background: #2a2a2a;
  color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  position: relative;
  outline: none;
  padding-bottom: 0;
}

/* Close button */
.btn-close-modal {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  font-size: 28px;
  opacity: 0.4;
}

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

/* Header section */
.modal-header-section {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-right: 35px;
}

.event-logo img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
}

.event-details {
  flex: 1;
}

.event-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.event-location {
  font-size: 14px;
  color: #888888;
  margin: 4px 0 0 0;
}

/* Status tags section */
.status-tags-section {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.status-tag {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Status List Demo Styles */
.status-list-demo {
  margin-top: 32px;
}

.status-list-demo .status-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.status-list-demo .status-badge {
  border-radius: 4px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
}

.status-list-demo .status-badge i {
  margin-right: 8px;
}

.status-list-demo .status-badge.picks-made,
.status-tags-section .status-tag.picks-made {
  color: #fff;
  background: #222;
  /* text-decoration: line-through; */
}

.status-list-demo .status-badge.picks-made i {
  color: #fff;
}

.status-list-demo .status-badge.picks-pending {
  color: #fff;
  background: #e53935;
}

.status-list-demo .status-badge.picks-pending i {
  color: #fff;
}

.status-list-demo .status-badge.currently-picking {
  color: #222;
  background: #ffd180;
}

.status-list-demo .status-badge.currently-picking i {
  color: #222;
}

.status-list-demo .status-badge.no-picks,.status-tags-section .status-tag.no-picks {
  color: #fff;
  background: #757575;
}

.status-list-demo .status-label {
  margin-left: 16px;
}

.status-list-demo .status-label.picks-made {
  color: #fff;
}

.status-list-demo .status-label.picks-pending {
  color: #fff;
}

.status-list-demo .status-label.currently-picking {
  color: #ffd180;
}

.status-list-demo .status-label.no-picks {
  color: #757575;
  border: 1px solid transparent;
}

.status-tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.status-tag.completed {
  background-color: #22c55e;
  color: #ffffff;
}

.status-tag.incomplete {
  background-color: #4a4a4a;
  color: #cccccc;
}

.status-tag.general {
  background-color: #6366f1;
  color: #ffffff;
}

.status-tag.status {
  background-color: #f59e0b;
  color: #ffffff;
}

.status-tag.active {
  color: #222 !important;
    background: #ffd180 !important;
}

.status-tag i {
  font-size: 9px;
}

/* Keyboard focus for accessibility */
.status-tag:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* Events list */
.events-list-section {
  max-height: 424px;
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: #161616;
  padding: 32px;
  margin-left: -24px;
  margin-right: -24px;
}

.event-item {
  display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    /* border-bottom: 1px solid #3a3a3a; */
    width: 32.5%;
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 17px;
    border-radius: 8px;
}

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

.event-info {
  display: flex;
  align-items: center;
  flex: 1;
}

.event-details-main {
  flex: 1;
}

.event-name {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin: 0 0 6px 0;
  flex: 1;
  position: relative;
  padding-left: 15px;
}
.event-name::before{
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50px;
  display: block;
}

.selected-rider {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rider-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.rider-name {
  font-size: 14px;
  color: #cccccc;
}

/* Event actions */
.event-actions {
  display: flex;
  align-items: center;
}

.btn-pick {
  background: none;
  border: 1px solid #d4a574;
  color: #d4a574;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-pick:hover {
  background-color: #d4a574;
  color: #000000;
}

.picked-status {
  background-color: #d4a574;
  color: #000000;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

/* Event item states */
.event-item.picked .event-name {
  color: #ffffff;
}

.event-item.unpicked .event-name {
  color: #aaaaaa;
}


/*-----------------------------------------10-09-25 starts----------------------------------*/
.email-input-container .form-control:focus, .password-input-container .form-control:focus{
  border-color: #3c3c3c !important;
  box-shadow: none !important;
}
.modal-content.signin-modal .form-control{
  padding: .82rem .75rem;
  background: #1c1c1c !important;
  color: #ADAEBC;
}
.email-modal-prefix{
  background: #1c1c1c !important;
}
.email-input-container .form-control:focus, .password-input-container .form-control:focus{
  color: #4B5563 !important;
}
/* Target autofilled inputs */
.modal-content.signin-modal input:-webkit-autofill,
.modal-content.signin-modal textarea:-webkit-autofill,
.modal-content.signin-modal .modal-content.signin-modal select:-webkit-autofill {
  background-color: #1c1c1c  !important; /* light blue */
  -webkit-box-shadow: 0 0 0px 1000px #1c1c1c inset !important; 
  -webkit-text-fill-color: #93a5a5 !important; /* text color */
  transition: background-color 5000s ease-in-out 0s; /* keep color */
}
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    box-shadow: none !important;
}
.phone-input:focus{
  border-color: #575757 !important;
}
.consent-container .form-check{
    display: flex;
    padding-left: 25px !important;
}
.consent-container .form-check-input{
  float: none !important;
}
.eye-icon .fa{
  color: #6B7280;
}
.event-item .event-name{
  padding-left: 0;
    font-size: 18px;
    color: #fff;
}
.event-item .event-name::before{
  display: none;
}
.form-control:focus{
  border-color: #555;
}
.modal-content.signin-modal .form-control::placeholder{
  color: #ADAEBC !important;
}
button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none !important;
}
.form-control:disabled{
  opacity: 1 !important;
}
.show-legend-btn{
  display: inline-flex;
  width: auto;
  text-decoration: none !important;
}
.show-legend-btn span{
  text-decoration: underline !important;
}
.show-legend-btn i{
  text-decoration: none !important;
}

/* Target autofilled inputs */
.my-profile-form input:-webkit-autofill,
.my-profile-form textarea:-webkit-autofill,
.my-profile-form .modal-content.signin-modal select:-webkit-autofill {
  background-color: #0d0d0d  !important; /* light blue */
  -webkit-box-shadow: 0 0 0px 1000px #0d0d0d inset !important; 
  -webkit-text-fill-color: #93a5a5 !important; /* text color */
  transition: background-color 5000s ease-in-out 0s; /* keep color */
}
/*-----------------------------------------10-09-25 ends----------------------------------*/

.col-md-6 .rodeo-details-btn-group{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}
.col-md-6 .rodeo-details-btn-group .rodeo-details-btn{
  margin-right: 0 !important;
}
.col-md-6 .rodeo-details-btn-group .btn_Green,
.col-md-6 .rodeo-details-btn-group .btn_Yellow,
 .col-md-6 .rodeo-details-btn-group .btn_Grey{
  font-size: 14px !important;
  line-height: 16px;
  padding: 11px 10px;
  display: inline-block !important;
  width: auto;
  text-align: center;
  white-space: nowrap;
}
span.status_Tag.live_Status.me-2.rodeo-status-live,
span.status_Tag.upcoming_Status.me-2.rodeo-status-upcoming,
span.status_Tag.completed_Status.me-2.rodeo-status-completed{
  margin-bottom: 12px;
}
/* Responsive design */
@media (max-width: 768px) {
  .make-picks-modal-new .modal-dialog {
    margin: 1rem;
    max-width: calc(100% - 2rem);
  }
  
  .make-picks-modal-new-content {
    padding: 16px;
  }
  
  .modal-header-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
  }
  
  .event-title {
    font-size: 16px;
  }
  
  .event-item {
    padding: 10px;
    width: 100%;
    gap: 5px;
  }
  
  .event-info {
    gap: 10px;
  }
  .events-list-section{
    padding: 24px;
  }
  .rodeo-tab-btn {
    padding: 8px 16px;
  }
}

/* Scrollbar styling for events list */
.events-list-section::-webkit-scrollbar {
  width: 4px;
}

.events-list-section::-webkit-scrollbar-track {
  background: #3a3a3a;
  border-radius: 2px;
}

.events-list-section::-webkit-scrollbar-thumb {
  background: #666666;
  border-radius: 2px;
}

.events-list-section::-webkit-scrollbar-thumb:hover {
  background: #777777;
}

/* ==========================================================================
   View Picks Modal Styles
   ========================================================================== */

.view-picks-modal .modal-dialog {
  /* max-width: 480px; */
  max-width: 512px;
  width: 100%;
  margin: 1.75rem auto;
}

.view-picks-modal .modal-content {
  background: linear-gradient(135deg, #E0B975 0%, #D4A574 100%);
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.view-picks-modal-content {
  background: linear-gradient(135deg, #E0B975 0%, #D4A574 100%);
  color: #2d2d2d;
  padding: 20px;
  border-radius: 16px;
  position: relative;
  outline: none;
}

/* Close button */
.btn-close-view-picks {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: #2d2d2d;
  font-size: 32px;
  cursor: pointer;
  z-index: 10;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  opacity: 0.5;
}

.btn-close-view-picks:hover {
  background-color: rgba(45, 45, 45, 0.1);
}

/* Header section */
.view-picks-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  position: relative;
  margin-top: 26px;
}

.view-picks-brand-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.view-picks-logo img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
}

.view-picks-event-info {
  flex: 1;
}

.view-picks-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: 1.2;
}

.view-picks-location {
  font-size: 16px;
  color: #000;
  margin: 2px 0 0 0;
}

.view-picks-share-btn {
  background: transparent;
    border: none;
    color: #000;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid;
}

.view-picks-share-btn:hover {
  transform: translateY(-1px);
}

/* Tie Breaker section */
.tie-breaker-section {
  text-align: center;
  margin-bottom: 20px;
  padding: 8px 0;
}

.tie-breaker-label {
  font-size: 14px;
  color: #2d2d2d;
  font-weight: 500;
}

.tie-breaker-code {
  font-size: 14px;
  color: #dc2626;
  font-weight: 700;
}

/* Events list */
.view-picks-events-list {
  margin-bottom: 20px;
}

.view-picks-event-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(45, 45, 45, 0.1);
}

.view-picks-event-item:last-child {
  border-bottom: none;
}

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


.view-picks-event-item.unpicked .event-name {
  color: #666666;
}

.rider-info {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.rider-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.rider-name {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.not-picked {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
  /* font-style: italic; */
}

/* Action buttons */
.view-picks-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-edit-picks {
  background: #18550A;
  border: none;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.btn-edit-picks:hover {
  background: #227410;
  transform: translateY(-1px);
}

.btn-rodeo-standings {
  background: #000;
  border: none;
  color: #E0B975;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.btn-rodeo-standings:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
}
.flag_icon {
    background: url("../img/icons/flag-icon.svg") no-repeat center center;
    background-size: contain !important;
    width: 6px;
    height: 7px;
    display: block;
    border-radius: 100px;
}

/* Responsive design for View Picks Modal */
@media (max-width: 768px) {
  .view-picks-modal .modal-dialog {
    margin: 1rem;
    max-width: calc(100% - 2rem);
  }
  
  .view-picks-modal-content {
    padding: 16px;
  }
  
  .view-picks-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .view-picks-actions {
    flex-direction: column;
  }
}

/* Sign In Modal Styles */
.signin-modal {
  /* background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%); */
  background: linear-gradient(135deg, #0e0e0e 0%, #0e0e0e 20%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 12px;
  color: white;
  max-width: 448px;
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.signin-modal .modal-header {
  /* padding: 20px 20px 0 20px; */
  padding: 20px 7px 0 20px;
  justify-content: flex-end;
}

.signin-modal .btn-close-white {
  border: none;
  color: #999;
  font-size: 14px;
  opacity: 0.7;
  position: relative;
  z-index: -15px;
}

.signin-modal .btn-close-white:hover {
  opacity: 1;
}

.signin-icon {
  display: flex;
  justify-content: center;
}

.lock-icon {
  width: 60px;
  height: 60px;
  /* background: linear-gradient(135deg, var(--secondary-color) 0%, #B8860B 100%); */
  background: #B89B67;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.signin-title {
  font-size: 28px;
  font-weight: 600;
  color: white;
  margin: 0;
}

.signin-subtitle {
  font-size: 16px;
  color: #999;
  margin: 0;
}

.phone-input-container {
  max-width: 100%;
}

.phone-prefix {
  background: #1c1c1c;
  border: 1px solid #555;
  border-right: none;
  color: #999;
  border-radius: 8px 0 0 8px;
}

.phone-input {
  background: #333;
  border: 1px solid #555;
  border-left: none;
  color: white;
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  font-size: 16px;
}

.phone-input::placeholder {
  color: #777;
}

.phone-input:focus {
  background: #333;
  border-color: var(--secondary-color);
  color: white;
  box-shadow: 0 0 0 0.2rem rgba(218, 165, 32, 0.25);
}

.consent-container {
  text-align: left;
}

.consent-container .form-check {
  padding-left: 0;
}

.consent-container .form-check-input {
  margin-right: 10px;
  margin-top: 0.2em;
  background-color: #333;
  border-color: #555;
}

.consent-container .form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.consent-text {
  font-size: 12px;
  color: #bbb;
  line-height: 1.4;
  margin-bottom: 0;
  display: block;
}

.consent-link {
  color: var(--secondary-color);
  text-decoration: none;
}

.consent-link:hover {
  color: #B8860B;
  text-decoration: underline;
}

.send-code-btn {
  background: linear-gradient(135deg, #2d5f2f 0%, #1e4220 100%);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
}

.send-code-btn:hover {
  background: linear-gradient(135deg, #3a7a3d 0%, #255527 100%);
  transform: translateY(-1px);
}

.email-login-container {
  margin-top: 20px;
}

.email-login-btn {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 14px;
  border: none;
  background: none;
  padding: 0;
}

.email-login-btn:hover {
  color: #B8860B;
  text-decoration: underline;
}

/* Phone login button styling (for EmailLoginModal) */
.phone-login-container {
  margin-top: 15px;
}

.phone-login-btn {
  color: #E0B975;
  text-decoration: none;
  font-size: 14px;
  border: none;
  background: none;
  padding: 0;
}

.phone-login-btn:hover {
  color: #B8860B;
  text-decoration: underline;
}

/* User dropdown styling for TopNav */
.user-dropdown-container {
  position: relative;
}

.auth_Link {
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 6px;
  /* background: rgba(255, 255, 255, 0.1); */
  backdrop-filter: blur(10px);
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  color: #fff !important;
}

.auth_Link:hover {
  /* background: rgba(255, 165, 0, 0.2);
  border-color: rgba(255, 165, 0, 0.4); */
  color: var(--secondary-color) !important;
  text-decoration: none;
  /* transform: translateY(-1px); */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.auth_Link:focus {
  /* outline: 2px solid var(--secondary-color); */
  outline-offset: 2px;
  /* background: rgba(255, 165, 0, 0.15); */
}

.auth_Link:active {
  transform: translateY(0);
}

.profile_Icon {
  width: 18px;
  height: 18px;
  /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>') no-repeat center; */
  background-size: contain;
  display: inline-block;
  color: #fff;
  /* filter: invert(59%) sepia(89%) saturate(1000%) hue-rotate(359deg) brightness(100%) contrast(100%); */
}

.user-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 12px;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  margin-top: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  animation: dropdownFadeIn 0.3s ease-out;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.user-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(255, 165, 0, 0.3);
}

.user-dropdown-menu::after {
  content: '';
  position: absolute;
  top: -7px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #2d2d2d;
}

.user-dropdown-menu .dropdown-item {
  display: block;
  padding: 14px 18px;
  color: #fff;
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  transition: all 0.2s ease;
  font-weight: 400;
  position: relative;
}

.user-dropdown-menu .dropdown-item:hover {
  background: linear-gradient(90deg, rgba(255, 165, 0, 0.1) 0%, rgba(218, 165, 32, 0.1) 100%);
  color: #fff;
  text-decoration: none;
  transform: translateX(4px);
}

.user-dropdown-menu .dropdown-item:first-child {
  cursor: default;
  background: rgba(255, 165, 0, 0.05);
  border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}

.user-dropdown-menu .user-info-header {
  cursor: default;
  background: rgba(255, 165, 0, 0.05);
  border-bottom: 1px solid rgba(255, 165, 0, 0.2);
  padding: 16px 18px !important;
}

.user-dropdown-menu .dropdown-item:first-child:hover,
.user-dropdown-menu .user-info-header:hover {
  background: rgba(255, 165, 0, 0.05);
  transform: none;
}

.user-welcome-text {
  font-size: 14px;
  font-weight: 500;
}

/* Responsive design for user dropdown */
@media (max-width: 768px) {
  .user-dropdown-menu {
    min-width: 200px;
    right: -10px;
  }
  
  .user-welcome-text {
    display: none;
  }
  
  .auth_Link {
    padding: 6px 10px;
  }
}

@media (max-width: 480px) {
  .user-dropdown-menu {
    min-width: 180px;
    right: -20px;
  }
}

.user-dropdown-menu .user-name {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 16px;
}

.user-dropdown-menu .user-email {
  font-size: 12px;
  color: #999 !important;
  margin-top: 4px;
  font-weight: 300;
}

.user-dropdown-menu .dropdown-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 165, 0, 0.3) 50%, transparent 100%);
  margin: 8px 0;
  border: none;
}

.user-dropdown-menu .dropdown-item i {
  color: #fff;
  width: 16px;
  margin-right: 12px;
  text-align: center;
  transition: all 0.2s ease;
}

.user-dropdown-menu .dropdown-item:hover i {
  color: var(--secondary-color);
  transform: scale(1.1);
}

.user-dropdown-menu .dropdown-item:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: -2px;
  background: linear-gradient(90deg, rgba(255, 165, 0, 0.15) 0%, rgba(218, 165, 32, 0.15) 100%);
}

/* Loading state for user info */
.user-info-loading {
  opacity: 0.6;
  pointer-events: none;
}

.user-info-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid var(--secondary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* ==========================================================================
   OTP Verification Modal Styles
   ========================================================================== */

/* Phone input styling */
.otp-modal-phone-prefix {
  background-color: #1c1c1c;
  border-color: #555;
  color: var(--secondary-color);
}

.otp-modal-phone-input {
  background-color: #1c1c1c;
  border-color: #555;
  color: #fff;
  border-left: none;
}

/* OTP input styling */
.otp-modal-otp-prefix {
  background-color: #1c1c1c;
  border-color: #555;
  color: var(--secondary-color);
}

.otp-modal-otp-input {
  background-color: #1c1c1c;
  border-color: #555;
  color: #fff;
  border-left: none;
}

/* Resend code button and timer */
.otp-modal-resend-btn {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}

.otp-modal-resend-btn:hover {
  color: #ff8c00;
}

.otp-modal-resend-timer {
  color: #999;
  font-size: 14px;
  font-weight: 400;
}

.otp-modal-resend-icon {
  font-size: 12px;
}

/* Login button styling */
.otp-modal-login-btn {
  background-color: #28a745;
  border-color: #28a745;
}

/* ==========================================================================
   Email Login Modal Styles
   ========================================================================== */

/* Input styling with icons */
.email-modal-prefix {
  background-color: #1c1c1c;
  border-color: #3a3a3a;
  /* color: var(--secondary-color); */
  color: #E0B975;
  border-right: none;
}

/* Email and password input containers */
.email-input-container .form-control,
.password-input-container .form-control {
  background-color: #3a3a3a;
  border-color: #3a3a3a !important;
  color: #fff;
  border-left: none;
}

.email-input-container .form-control:focus,
.password-input-container .form-control:focus {
  background-color: #3a3a3a;
  border-color: var(--secondary-color);
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.25);
}

/* Password field with eye icon specific styling */
.password-input-container .position-relative {
  border-left: none;
}

.password-input-container .form-control {
  border-radius: 0 8px 8px 0;
  padding-right: 45px; /* Make room for eye icon */
}

/* Eye icon positioning and styling */
.password-input-container .password-show-hide {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--secondary-color);
  cursor: pointer;
  z-index: 10;
  padding: 4px;
  font-size: 16px;
}

.password-input-container .password-show-hide:hover {
  color: #ff8c00;
}

/* Input placeholder styling */
.email-input-container .form-control::placeholder,
.password-input-container .form-control::placeholder {
  color: #999;
}

/* Remember me checkbox styling */
.email-modal-checkbox {
  background-color: #3a3a3a;
  border-color: #666;
  margin-right: 8px;
}

.email-modal-checkbox:checked {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.email-modal-checkbox:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.25);
}

.email-modal-remember-text {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
  margin-left: 4px;
}

/* Remember/Forgot container */
.remember-forgot-container {
  text-align: left;
}

/* Email modal login button */
.email-modal-login-btn {
  background-color: #18550A;
  border-color: #18550A;
  font-weight: 500;
  padding: 12px 0;
  font-size: 16px;
}

.email-modal-login-btn:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

/* Forgot password link styling */
.forgot-password-btn {
  /* color: var(--secondary-color); */
  color: #E0B975;
  text-decoration: none;
  font-size: 14px;
  border: none;
  background: none;
  padding: 0;
}

.forgot-password-btn:hover {
  color: #ff8c00;
  text-decoration: underline;
}

/* Create account styling */
.create-account-container {
  margin-top: 20px;
}

.create-account-text {
  color: #999;
  font-size: 14px;
}

.create-account-btn {
  /* color: var(--secondary-color); */
  color: #E0B975;
  text-decoration: none;
  font-size: 14px;
  border: none;
  background: none;
  padding: 0;
  margin-left: 4px;
}

.create-account-btn:hover {
  color: #ff8c00;
  text-decoration: underline;
}

.form-control:disabled {
  background-color: #616161;
  opacity: 0.5;
}

/* Eye icon positioning and styling for password field */
.eye-icon {
  position: absolute;
  right: 10px;
  top: 15px;
}

/* Password show/hide button styling */
.password-show-hide {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--secondary-color);
  cursor: pointer;
  z-index: 10;
  padding: 4px;
  font-size: 16px;
}

.password-show-hide:hover {
  color: #ff8c00;
}

/* Password hint styling for register modal */
.password-hint {
  text-align: left;
  /* margin-left: 45px; Align with input field */
}

.password-hint small {
  color: #999 !important;
  font-size: 12px;
}

/* Forgot Password Modal Specific Styles */
.forgot-password-header {
  position: relative;
  margin-bottom: 20px;
}

.forgot-password-brand {
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 14px;
  color: #999;
  font-weight: normal;
}

.brand-logo {
  text-align: center;
  margin-top: 10px;
}

.brand-logo .logo-img {
  max-width: 120px;
  height: auto;
}

.reset-instructions {
  margin: 20px 0;
}

.instructions-text {
  font-size: 14px;
  color: #ccc;
  line-height: 1.4;
  margin: 0;
}

.back-to-login-container {
  margin: 15px 0;
}

.back-to-login-btn {
  color: var(--secondary-color) !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.back-to-login-btn:hover {
  color: #ff8c00 !important;
  text-decoration: underline;
}

.need-help-container {
  margin: 15px 0 5px 0;
}

.need-help-text {
  font-size: 13px;
  color: #999;
}

.help-center-container {
  margin-top: 10px;
}

.help-center-btn {
  color: var(--secondary-color) !important;
  text-decoration: none;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
}

.help-center-btn:hover {
  color: #ff8c00 !important;
  text-decoration: underline;
}

/* Reset Password Modal Specific Styles */
.reset-password-header {
  margin-bottom: 20px;
}

.reset-password-header .brand-logo {
  text-align: center;
}

.reset-password-header .logo-img {
  max-width: 120px;
  height: auto;
}

.password-requirements {
  text-align: left;
  background-color: #2a2a2a;
  border-radius: 8px;
  padding: 15px;
  margin: 20px 0;
}

.requirements-title {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

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

.requirement-item {
  color: #ccc;
  font-size: 13px;
  margin-bottom: 5px;
  position: relative;
  padding-left: 15px;
}

.requirement-item:before {
  content: "•";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
}

.security-notice {
  margin: 20px 0;
}

.notice-text {
  font-size: 13px;
  color: #999;
  line-height: 1.4;
  margin: 0;
}

.modal-footer-links {
  border-top: 1px solid #444;
  padding-top: 15px;
  margin-top: 20px;
}

.footer-links-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.footer-link {
  color: #999 !important;
  text-decoration: none;
  font-size: 12px;
}

.footer-link:hover {
  color: var(--secondary-color) !important;
  text-decoration: underline;
}

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

.copyright-text small {
  color: #666;
  font-size: 11px;
}

/* Update Display Name Modal Styles */
.update-displayname-modal {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  border: none;
  border-radius: 12px;
  color: white;
  max-width: 400px;
  margin: 0 auto;
}

.update-displayname-modal .modal-header {
  padding: 20px 20px 0 20px;
  justify-content: flex-end;
}

.update-displayname-modal .btn-close-white {
  border: none;
  color: #999;
  font-size: 20px;
  opacity: 0.7;
}

.update-displayname-modal .btn-close-white:hover {
  opacity: 1;
}

.update-displayname-icon {
  display: flex;
  justify-content: center;
}

.user-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #B8860B 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.update-displayname-title {
  font-size: 28px;
  font-weight: 600;
  color: white;
  margin: 0;
}

.update-displayname-subtitle {
  font-size: 16px;
  color: #999;
  margin: 0;
}

.displayname-input-container {
  max-width: 100%;
}

.displayname-prefix {
  background: #333;
  border: 1px solid #555;
  border-right: none;
  color: #999;
  border-radius: 8px 0 0 8px;
}

.displayname-input {
  background: #333;
  border: 1px solid #555;
  border-left: none;
  color: white;
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  font-size: 16px;
}

.displayname-input::placeholder {
  color: #777;
}

.displayname-input:focus {
  background: #333;
  border-color: var(--secondary-color);
  color: white;
  box-shadow: 0 0 0 0.2rem rgba(218, 165, 32, 0.25);
}

.update-displayname-btn {
  background: linear-gradient(135deg, #2d5f2f 0%, #1e4220 100%);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
}

.update-displayname-btn:hover {
  background: linear-gradient(135deg, #3a7a3d 0%, #255527 100%);
  transform: translateY(-1px);
}

.error-message {
  text-align: left;
}

.error-message .text-danger {
  color: #ff6b6b !important;
  font-size: 12px;
}

/* RodeoDetailsListing Custom Styles */
.rodeo-details-bg {
  background: #000;
}
.rodeo-details-maxwidth {
  max-width: 1200px;
}
.rodeo-details-maxwidth .bg-dark{
  background-size: cover;
  position: relative;
  z-index: 1;
  border-radius: 14px !important;
  gap: 8px;
}
.rodeo-details-maxwidth .col-md-6 .bg-dark::before {
    content: '';
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.77) 60%, rgb(16 16 16) 100%);
    display: block;
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 14px;
}
.rodeo-details-maxwidth .rodeo-details-btn {
    font-size: 14px;
    padding: 9px 10px;
    display: inline-block !important;
    width: auto;
    text-align: center;
}
.rodeo-details-maxwidth .col-md-6 .text_grey{
  font-size: 14px !important;
}
.rodeo-details-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 32px;
  padding-bottom: 25px;
}
.rodeo-details-tabs {
  margin-bottom: 24px;
  border-bottom: 1px solid #343434;
}
.rodeo-details-tabs .rodeo-tab-btn{
  position: relative;
}
.rodeo-details-tabs .rodeo-tab-btn::before {
    content: '';
    background: url(../img/icons/arrow.png) no-repeat 0 0;
    width: 6px;
    height: 11px;
    background-size: contain;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -2px;
}
.rodeo-details-tabs .rodeo-tab-btn:first-child::before {
    display: none;
}
.rodeo-tab-btn {
  padding: 8px 24px;
  margin-right: 8px;
  font-weight: bold;
  background: transparent;
  color: #fff;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.rodeo-tab-btn.active {
  color: var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
}
.rodeo-status-live {
  background: #FF0000;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  padding: 2px 12px;
  border-radius: 6px;
  box-shadow: none !important;
}
.rodeo-details-badge.bg-danger{
  background: #FF0000 !important;
  border-radius: 100px;
  animation: glowBox 0.5s infinite alternate ease-in-out;
}
.rodeo-details-badge.bg-secondary{
  background-color: #374151 !important;
  border-radius: 30px;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rodeo-status-live .rodeo-status-circle{
  display: none !important;
}
.rodeo-status-upcoming {
  background: #43A047;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  padding: 2px 12px;
  border-radius: 6px;
}
.rodeo-status-completed {
  background: #757575;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  padding: 2px 12px;
  border-radius: 6px;
}
.rodeo-status-circle {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 50%;
  margin-right: 6px;
}
.rodeo-details-logo {
  width: 56px;
  /* height: 56px; */
  border-radius: 8px;
  background: #222;
  flex-shrink: 0;
}
.rodeo-details-event {
  font-size: 24px;
  line-height: 28px;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 162px;
  display: block;
  overflow: hidden;
}
.rodeo-details-location {
  font-size: 16px;
  color: var(--secondary-color);
  font-weight: 600;
}
.col-md-6 .rodeo-details-location{
  color: #fff !important;
}
.rodeo-details-date {
  font-size: 14px;
  color: #9CA3AF !important;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rodeo-details-date .rodeo-details-badge{
  margin-left: 0 !important;
}
.text_yellow.rodeo-details-location{
    color: var(--secondary-color) !important;
    font-weight: 600;
    font-size: 16px !important;
}
.rodeo-details-badge {
  font-size: 12px;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rodeo-details-badge span.circle {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 100px;
    flex-shrink: 0;
    display: block;
}
.rodeo-details-btn {
  min-width: 120px;
  font-weight: 600;
}
.rodeo-details-completed {
  box-shadow: 0 2px 8px #0002;
}
.rodeo-details-completed .rodeo-details-event{
  font-size: 18px !important;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 162px;
  display: block;
  overflow: hidden;
}
.col-md-6 .rodeo-details-event{
    width: 205px;
}
.rodeo-details-completed .rodeo-details-location {
  color: #fff !important;
  font-weight: 400;
}
.rodeo-details-completed .btn_Yellow{
  border: 1px solid #4B5563 !important;
  font-size: 17px;
  font-weight: 400;
  margin-right: 8px;
  padding: 12px 25px;
  color: #fff !important;
  background: transparent !important;
}
.rodeo-details-completed .btn_Yellow:hover{
  background: #4B5563 !important;
  border: 1px solid #4B5563 !important;
  color: #fff !important;
  transform: translateY(-1px);
}
.rodeo-details-completed .btn_Yellow_Outline{
  border: 1px solid var(--secondary-color) !important;
  font-size: 17px;
  font-weight: 400;
  margin-right: 8px;
  padding: 12px 25px;
  color: #fff !important;
  background: transparent !important;
}
.rodeo-details-completed .btn_Yellow_Outline:hover{
  background: var(--secondary-color) !important;
  border: 1px solid var(--secondary-color) !important;
  color: #fff !important;
}

/* Performance Block Styles for Rodeo Details */
.rodeo-performance-item {
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.rodeo-performance-item:hover {
  transform: translateY(-2px);
}

.rodeo-performance-item .performance_Avatar {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  background: #333;
}

.rodeo-performance-item .performance_Avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rodeo-performance-item .performance_Content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.rodeo-performance-item .performance_Content h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.rodeo-performance-item .performance_Content h5 {
  font-size: 14px;
  color: #ccc;
}

.rodeo-performance-item .performance_Btns {
  display: flex;
  gap: 12px;
}

.rodeo-performance-item .performance_Btns a {
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 100px;
  text-align: center;
  font-size: 14px;
}

/* Section headers for rodeo details */
.rodeo-section-header {
  margin-bottom: 20px;
}

.rodeo-section-header .status_Tag {
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
}
a.btn_Grey.fs_20.opacity_Btn {
    opacity: 1 !important;
}
/* Responsive adjustments for performance blocks */
@media (max-width: 768px) {
  .rodeo-performance-item .performance_Block {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .rodeo-performance-item .performance_Btns {
    width: 100%;
    justify-content: flex-end;
  }
}

/* Fan Magazine Modal Styles */
.fan-magazine-modal .modal-content {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  border: none;
  border-radius: 12px;
  color: white;
}

.fan-magazine-header {
  padding: 30px 20px 20px 20px;
  position: relative;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ==========================================================================
   My Profile Page Styles
   ========================================================================== */

.my-profile-container {
  /* max-width: 900px; */
  max-width: 1260px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
}

/* Breadcrumb Navigation */
.profile-breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 12px 0;
  font-size: 14px;
}

.breadcrumb-link {
  color: var(--secondary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  font-weight: 500;
}

.breadcrumb-link:hover {
  color: var(--secondary-color);
  text-decoration: none;
  transform: translateX(-2px);
}

.breadcrumb-separator {
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.breadcrumb-current {
  color: #fff;
  font-weight: 600;
}

.my-profile-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px 20px;
  background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 165, 0, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.profile-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.profile-icon i {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #B8860B 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  box-shadow: 0 6px 20px rgba(218, 165, 32, 0.3);
}

.profile-subtitle {
  color: #999;
  font-size: 16px;
  margin: 15px 0 0 0;
  font-weight: 300;
}

.my-profile-form {
  /* background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%); */
  border-radius: 16px;
  padding: 40px;
  /* border: 1px solid rgba(255, 165, 0, 0.2); */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 165, 0, 0.1);
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 30px;
}

.section-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.section-title i {
  color: #fff;
  font-size: 18px;
}

.section-description {
  color: #999;
  font-size: 14px;
  margin-bottom: 20px;
  font-style: italic;
}

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

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

.form-group .form-label {
  color: #fff;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  position: relative;
}

/* .form-group .form-label::after {
  content: '';
  margin-left: auto;
  width: 4px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 50%;
  margin-right: 0;
} */

/* Required field indicator */
.form-group .form-label:has-text("*")::before,
.form-label:has-text("*")::before {
  content: '*';
  color: #ff6b6b;
  font-weight: bold;
  margin-right: 4px;
  font-size: 16px;
}

/* Alternative approach for required fields */
.form-label[data-required="true"]::before {
  content: '*';
  color: #ff6b6b;
  font-weight: bold;
  margin-right: 4px;
  font-size: 16px;
}

/* Input field styling to match theme */
.form-group input,
.form-group .react-datepicker-wrapper input,
.my-profile-form .form-control,
.my-profile-form input[type="text"],
.my-profile-form input[type="email"],
.my-profile-form input[type="password"],
.my-profile-form input[type="tel"] {
  background: rgba(255, 255, 255, 0.05) !important;
  /* border: 1px solid rgba(255, 165, 0, 0.3) !important; */
  border: 1px solid #4B5563 !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  color: #fff !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
}

.form-group input:focus,
.form-group .react-datepicker-wrapper input:focus,
.my-profile-form .form-control:focus,
.my-profile-form input[type="text"]:focus,
.my-profile-form input[type="email"]:focus,
.my-profile-form input[type="password"]:focus,
.my-profile-form input[type="tel"]:focus {
  outline: none !important;
  border-color: var(--secondary-color) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.1) !important;
  transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group .react-datepicker-wrapper input::placeholder,
.my-profile-form .form-control::placeholder,
.my-profile-form input::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Input validation states */
.my-profile-form .form-control.is-invalid,
.my-profile-form input.is-invalid {
  border-color: #ff6b6b !important;
  background: rgba(255, 107, 107, 0.1) !important;
}

.my-profile-form .form-control.is-valid,
.my-profile-form input.is-valid {
  border-color: #4ade80 !important;
  background: rgba(74, 222, 128, 0.1) !important;
}

/* Input group styling for phone numbers */
.my-profile-form .input-group {
  border-radius: 8px;
  overflow: hidden;
}

.my-profile-form .input-group-text {
  background: rgba(255, 165, 0, 0.1);
  border: 1px solid rgba(255, 165, 0, 0.3);
  color: var(--secondary-color);
  font-weight: 500;
}

/* Phone input specific styling for MyProfile */
.my-profile-form .phone-input-container {
  width: 100%;
}

.my-profile-form .phone-input-container .input-group {
  border-radius: 8px;
  overflow: hidden;
}

.my-profile-form .phone-prefix {
  background: rgba(255, 165, 0, 0.1) !important;
  border: 1px solid rgba(255, 165, 0, 0.3) !important;
  border-right: none !important;
  color: var(--secondary-color) !important;
  font-weight: 500;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
}

.my-profile-form .phone-input {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 165, 0, 0.3) !important;
  border-left: none !important;
  color: #fff !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
  padding: 12px 16px !important;
}

.my-profile-form .phone-input:focus {
  outline: none !important;
  border-color: var(--secondary-color) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
}

.my-profile-form .phone-input:focus + .phone-prefix,
.my-profile-form .phone-input:focus ~ .phone-prefix {
  border-color: var(--secondary-color) !important;
}

.my-profile-form .phone-input::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.my-profile-form .phone-input.is-invalid {
  border-color: #ff6b6b !important;
  background: rgba(255, 107, 107, 0.1) !important;
}

.my-profile-form .phone-input-container .error-message {
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 5px;
  display: flex;
  align-items: center;
}

.my-profile-form .phone-input-container .error-message::before {
  content: '⚠';
  margin-right: 5px;
  font-size: 10px;
}

/* Hover effects for phone input */
.my-profile-form .phone-input-container:hover .phone-prefix {
  background: rgba(255, 165, 0, 0.15) !important;
  border-color: rgba(255, 165, 0, 0.4) !important;
}

.my-profile-form .phone-input-container:hover .phone-input {
  border-color: rgba(255, 165, 0, 0.4) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

/* Focus state for entire phone input group */
.my-profile-form .phone-input:focus ~ .phone-prefix,
.my-profile-form .phone-input-container:focus-within .phone-prefix {
  border-color: var(--secondary-color) !important;
  background: rgba(255, 165, 0, 0.2) !important;
  color: #fff !important;
}

.my-profile-form .phone-input:focus,
.my-profile-form .phone-input-container:focus-within .phone-input {
  border-color: var(--secondary-color) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
}

.my-profile-form .phone-input-container:focus-within .input-group {
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.1);
  transform: translateY(-1px);
}

/* Animation for phone input */
.my-profile-form .phone-input-container .input-group {
  transition: all 0.3s ease;
}

.my-profile-form .phone-prefix i {
  font-size: 14px;
  transition: all 0.3s ease;
}

.my-profile-form .phone-input-container:focus-within .phone-prefix i {
  transform: scale(1.1);
}

/* Password field styling */
.password-field-show {
  position: relative;
}

.password-field-show .eye-icon {
  position: absolute;
  right: 12px;
  top: 70%;
  transform: translateY(-50%);
  color: var(--secondary-color);
  cursor: pointer;
  transition: all 0.2s ease;
}

.password-field-show .eye-icon:hover {
  color: var(--secondary-color);
  transform: translateY(-50%) scale(1.1);
}

/* Form actions */
.form-actions {
  text-align: center;
  padding-top: 20px;
  /* border-top: 1px solid rgba(255, 165, 0, 0.1); */
}

.btn-update-profile {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #B8860B 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.btn-update-profile:hover {
  background: linear-gradient(135deg, #B8860B 0%, var(--secondary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

.btn-update-profile:active {
  transform: translateY(0);
}

.btn-update-profile:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-update-profile.loading {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.7) 0%, rgba(184, 134, 11, 0.7) 100%);
}

.btn-update-profile i {
  margin-right: 8px;
}

.btn-update-profile .fa-spinner {
  animation: spin 1s linear infinite;
}

/* Error styling */
.form-group .error-message {
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 5px;
  display: flex;
  align-items: center;
}

.form-group .error-message::before {
  content: '⚠';
  margin-right: 5px;
  font-size: 10px;
}

/* Responsive design */
@media (max-width: 768px) {
  .my-profile-container {
    padding: 15px;
  }
  
  .my-profile-header {
    padding: 20px 15px;
  }
  
  .my-profile-form {
    padding: 25px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .section-title {
    font-size: 18px;
  }
  
  .profile-icon i {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .user-dropdown-container{
    order: 2;
  }
  .rodeo-details-maxwidth .bg-dark{
    flex-direction: column;
  }
  .col-md-6 .rodeo-details-btn-group{
    flex-direction: row;
    padding-top: 12px;
  }
  .rodeo-details-btn-group{
    padding-top: 12px;
  }
  .rodeo-details-completed > .d-flex{
    width: 100%;
  }
}

@media (max-width: 480px) {
  .my-profile-container {
    padding: 10px;
  }
  
  .my-profile-header {
    padding: 15px 10px;
  }
  
  .my-profile-form {
    padding: 20px 15px;
  }
  
  .btn-update-profile {
    width: 100%;
    min-width: auto;
  }
}

/* Animation for form loading */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-section {
  animation: fadeInUp 0.6s ease-out;
}

.form-section:nth-child(2) {
  animation-delay: 0.1s;
}

.form-section:nth-child(3) {
  animation-delay: 0.2s;
}

.form-section:nth-child(4) {
  animation-delay: 0.3s;
}

/* DatePicker styling */
.my-profile-form .react-datepicker-wrapper {
  width: 100%;
}

.my-profile-form .react-datepicker__input-container input {
  background: rgba(255, 255, 255, 0.05) !important;
  /* border: 1px solid rgba(255, 165, 0, 0.3) !important; */
  border: 1px solid #4B5563 !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  color: #fff !important;
}

.react-datepicker {
  background: #2d2d2d !important;
  /* border: 1px solid rgba(255, 165, 0, 0.3) !important; */
  border: 1px solid #4B5563 !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

.react-datepicker__header {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #B8860B 100%) !important;
  border-bottom: 1px solid rgba(255, 165, 0, 0.3) !important;
  border-radius: 12px 12px 0 0 !important;
}

.react-datepicker__current-month,
.react-datepicker__day-name {
  color: white !important;
}

.react-datepicker__day {
  color: #fff !important;
}

.react-datepicker__day:hover {
  background: rgba(255, 165, 0, 0.2) !important;
  border-radius: 4px !important;
}

.react-datepicker__day--selected {
  background: var(--secondary-color) !important;
  border-radius: 4px !important;
}

.react-datepicker__day--today {
  background: rgba(255, 165, 0, 0.3) !important;
  border-radius: 4px !important;
}

/* Loading state */
.my-profile-form.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.my-profile-form.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid transparent;
  border-top: 3px solid var(--secondary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Success/Error notifications */
.profile-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 12px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  z-index: 9999;
  animation: slideInRight 0.3s ease-out;
}

.profile-notification.success {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

.profile-notification.error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.fan-magazine-title {
  font-size: 28px;
  font-weight: 600;
  color: white;
  margin: 0 0 10px 0;
}

.fan-magazine-subtitle {
  font-size: 16px;
  color: #999;
  margin: 0;
  line-height: 1.4;
}

.fan-magazine-header .btn-close-white {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  color: #999;
  font-size: 13px;
  opacity: 0.7;
}

.fan-magazine-header .btn-close-white:hover {
  opacity: 1;
}

.fan-magazine-body {
  padding: 0 30px 5px 30px;
}

.fan-magazine-form {
  max-width: 100%;
}

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

.form-row-split {
  display: flex;
  gap: 15px;
}

.form-row-split .form-group {
  flex: 1;
}

.form-group {
  width: 100%;
}

/* Override form input styles for fan magazine modal */
.fan-magazine-modal input.form-control,
.fan-magazine-modal textarea.form-control {
  background: #333;
  border: 1px solid #555;
  color: white !important;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.fan-magazine-modal input.form-control::placeholder,
.fan-magazine-modal textarea.form-control::placeholder {
  color: #777;
}

.fan-magazine-modal input.form-control:focus,
.fan-magazine-modal textarea.form-control:focus {
  background: #333;
  border-color: var(--secondary-color);
  color: white;
  box-shadow: 0 0 0 0.2rem rgba(218, 165, 32, 0.25);
  outline: none;
}

.fan-magazine-select {
  background: #333 !important;
  border: 1px solid #555 !important;
  color: white !important;
  border-radius: 8px !important;
  min-height: 47px;
}

.fan-magazine-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(218, 165, 32, 0.25) !important;
}

.fan-magazine-footer {
  padding: 20px 30px 30px 30px;
  border-top: none;
}

.fan-magazine-submit-btn {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #B8860B 100%);
  border: none;
  border-radius: 8px;
  padding: 15px 24px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fan-magazine-submit-btn:hover {
  background: linear-gradient(135deg, #E6B82A 0%, #C5941A 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(218, 165, 32, 0.3);
}

.fan-magazine-submit-btn:active {
  transform: translateY(0);
}

/* Error text styling for fan magazine modal */
.fan-magazine-modal .invalid-feedback {
  color: #ff6b6b;
  font-size: 14px;
  margin-top: 5px;
}

.select-search{
  width: auto !important;
}
.select-search__input{
  background: #333 !important;
  border: 1px solid #555 !important;
  min-height: 47px;
}
/* Responsive design for fan magazine modal */
@media (max-width: 768px) {
  .fan-magazine-header {
    padding: 20px 15px 15px 15px;
  }
  
  .fan-magazine-body {
    padding: 0 15px 15px 15px;
  }
  
  .fan-magazine-footer {
    padding: 15px 15px 20px 15px;
  }
  
  .form-row-split {
    flex-direction: column;
    gap: 20px;
  }
  
  .fan-magazine-title {
    font-size: 24px;
  }
  
  .fan-magazine-subtitle {
    font-size: 14px;
  }
}

.main-container.not-found-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
 
.main-container.not-found-wrap h1 {
  font-size: 8rem;
  color: #fff;
  font-weight: 900;
}
 
.main-container.not-found-wrap h2 {
  font-size: 2.5rem;
  color: #d5b676;
  /* text-transform: uppercase; */
  text-align: center;
}
 
.main-container.not-found-wrap+.home-link {
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
 
.main-container.not-found-wrap+.home-link a {
  background: #d9b173;
  padding: 1rem 2rem;
  border-radius: 10px;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* ==========================================================================
   CMS Page Styles (using MyProfile theme)
   ========================================================================== */

.cms-page-content {
  min-height: 60vh;
}

.cms-content {
  color: #fff;
  line-height: 1.7;
}

.cms-content .content-text {
  font-size: 16px;
  color: #e0e0e0;
}

.cms-content .content-text h1,
.cms-content .content-text h2,
.cms-content .content-text h3,
.cms-content .content-text h4,
.cms-content .content-text h5,
.cms-content .content-text h6 {
  color: var(--secondary-color);
  margin: 30px 0 15px 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(218, 165, 32, 0.2);
  padding-bottom: 10px;
}

.cms-content .content-text h1 {
  font-size: 32px;
}

.cms-content .content-text h2 {
  font-size: 28px;
}

.cms-content .content-text h3 {
  font-size: 24px;
}

.cms-content .content-text h4 {
  font-size: 20px;
}

.cms-content .content-text p {
  margin-bottom: 20px;
  color: #e0e0e0;
}

.cms-content .content-text ul,
.cms-content .content-text ol {
  margin: 20px 0;
  padding-left: 30px;
}

.cms-content .content-text li {
  margin-bottom: 10px;
  color: #e0e0e0;
}

.cms-content .content-text ul li::marker {
  color: var(--secondary-color);
}

.cms-content .content-text ol li::marker {
  color: var(--secondary-color);
  font-weight: bold;
}

.cms-content .content-text a {
  color: var(--secondary-color);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.cms-content .content-text a:hover {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}

.cms-content .content-text blockquote {
  background: rgba(218, 165, 32, 0.1);
  border-left: 4px solid var(--secondary-color);
  padding: 20px;
  margin: 25px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.cms-content .content-text code {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  color: var(--secondary-color);
  font-size: 14px;
}

.cms-content .content-text pre {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(218, 165, 32, 0.2);
  overflow-x: auto;
  margin: 20px 0;
}

.cms-content .content-text pre code {
  background: none;
  padding: 0;
  color: #e0e0e0;
}

.cms-content .content-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  overflow: hidden;
}

.cms-content .content-text th,
.cms-content .content-text td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(218, 165, 32, 0.1);
}

.cms-content .content-text th {
  background: rgba(218, 165, 32, 0.1);
  color: var(--secondary-color);
  font-weight: 600;
}

.cms-content .content-text tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.loading-container i {
  color: var(--secondary-color);
}

.loading-container p {
  color: #999;
  margin: 0;
  font-size: 16px;
}

.no-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.no-content i {
  font-size: 48px;
  margin-bottom: 16px;
}

.no-content p {
  margin: 0;
  font-size: 16px;
}

/* Responsive adjustments for CMS content */
@media (max-width: 768px) {
  .cms-content .content-text h1 {
    font-size: 28px;
  }

  .cms-content .content-text h2 {
    font-size: 24px;
  }

  .cms-content .content-text h3 {
    font-size: 20px;
  }

  .cms-content .content-text h4 {
    font-size: 18px;
  }

  .cms-content .content-text table {
    font-size: 14px;
  }

  .cms-content .content-text th,
  .cms-content .content-text td {
    padding: 8px 12px;
  }
}

.footer-separator {
  color: #666;
  font-size: 12px;
  margin: 0 5px;
}
 
.footer-copyright {
  text-align: center;
  font-size: 11px;
  color: #666 !important;
  margin: 0;
  padding-top: 8px;
}
.events-list-section::-webkit-scrollbar-track {
  background: #333;
}
 
.events-list-section::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 2px;
}
 
/* ==========================================================================
   Legend Section Styles for Make Picks Modal
   ========================================================================== */
 
.legend-section {
  margin-top: 20px;
  border-top: 1px solid #404040;
  padding-top: 15px;
  padding-bottom: 15px;
}
 
.show-legend-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  padding: 8px 0;
  text-decoration: none;
  transition: color 0.3s ease;
}
 
.show-legend-btn:hover {
  color: #DAA520;
}
 
.show-legend-btn i {
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.3s ease;
}
 
.legend-content {
  margin-top: 5px;
  padding: 15px 0;
  animation: slideDown 0.3s ease-in-out;
}
 
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 
.legend-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 0;
  /* border-bottom: 1px solid #333; */
  gap: 18px;
}
 
.legend-item:last-child {
  border-bottom: none;
}
 
.legend-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  min-width: 140px;
}
 
.legend-badge i {
  font-size: 10px;
}
 
.legend-badge.no-picks {
  background-color: #404040;
  color: #ffffff;
}
 
.legend-badge.currently-picking {
  background-color: #E0B975;
  color: #000000;
}
 
.legend-badge.currently-picking i {
  animation: spin 1s linear infinite;
}
 
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
 
.legend-badge.picks-made {
  background-color: #18550A;
  color: #ffffff;
}
 
.legend-badge.picks-closed {
  background-color: #FF0000;
  color: #ffffff;
}
 
.legend-label {
  color: #cccccc;
  font-size: 14px;
  text-align: right;
  /* flex: 1; */
}
 
/* Responsive adjustments for legend */
@media (max-width: 768px) {
  .legend-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .legend-label {
    text-align: left;
    font-size: 11px;
  }
  
  .legend-badge {
    min-width: auto;
  }
}
.select-search__select ul{
  padding-left: 0 !important;
}
.text-muted.form-control,
.email-input-container .form-control:focus, .password-input-container .form-control:focus{
  color: #ADAEBC !important;
}

/* ==========================================================================
   Leaderboard Listing Styles
   ========================================================================== */

.leaderboard-listing-panel {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 24px;
  min-height: 600px;
}

.leaderboard-header {
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}

.leaderboard-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

/* Tab Navigation Styles */
.leaderboard-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
}

.leaderboard-tab-btn {
  background: #2a2a2a;
  border: 1px solid #444;
  color: #999;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-right: none;
}

.leaderboard-tab-btn:first-child {
  border-radius: 6px 0 0 6px;
}

.leaderboard-tab-btn:last-child {
  border-radius: 0 6px 6px 0;
  border-right: 1px solid #444;
}

.leaderboard-tab-btn:hover {
  background: #333;
  color: #fff;
}

.leaderboard-tab-btn.active {
  background: #f39c12;
  color: #000;
  border-color: #f39c12;
  position: relative;
  z-index: 1;
}

.leaderboard-tab-btn.active + .leaderboard-tab-btn {
  border-left-color: #f39c12;
}

/* Search Bar Styles */
.search-bar-container {
  margin-bottom: 24px;
}

.search-form {
  width: 100%;
}

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

.search-input {
  width: 100%;
  padding: 12px 50px 12px 16px;
  background: #2a2a2a;
  border: 1px solid #444;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  border-color: #f39c12;
}

.search-input::placeholder {
  color: #999;
}

.search-actions {
  position: absolute;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.search-clear-btn {
  background: none;
  border: none;
  color: #999;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.3s ease;
}

.search-clear-btn:hover {
  color: #fff;
}

.search-submit-btn {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.3s ease;
}

.search-submit-btn:hover {
  color: #f39c12;
}

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

/* Event Info Section */
.event-info-section {
  margin-bottom: 24px;
}

.event-info-card {
  background: #2a2a2a;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.event-details h3 {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 8px 0;
}

.event-details p {
  color: #999;
  margin: 0;
  font-size: 14px;
}

.tie-breaker-info {
  text-align: right;
}

.tie-breaker-label {
  display: block;
  color: #999;
  font-size: 12px;
  margin-bottom: 4px;
}

.tie-breaker-code {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

/* Leaderboard Table Styles */
.leaderboard-table-container {
  background: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
}

.leaderboard-table-wrapper {
  overflow-x: auto;
}

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

.leaderboard-table-header {
  background: #333;
  color: #f39c12;
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid #444;
}

.leaderboard-table-row {
  border-bottom: 1px solid #444;
  transition: background-color 0.3s ease;
}

.leaderboard-table-row:hover {
  background: #333;
}

.leaderboard-table-row.my-pick-row {
  background: rgba(243, 156, 18, 0.1);
}

.leaderboard-table-cell {
  padding: 16px;
  color: #fff;
  font-size: 14px;
}

.player-cell {
  padding: 12px 16px;
}

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

.player-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}

.player-name {
  color: #fff;
  font-weight: 500;
}

.result-cell {
  color: #f39c12;
  font-weight: 600;
}

.code-cell {
  position: relative;
}

.tie-breaker-code {
  color: #fff;
}

.my-pick-badge {
  background: #f39c12;
  color: #000;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 12px;
  margin-left: 8px;
}

.no-data-cell {
  text-align: center;
  color: #999;
  font-style: italic;
  padding: 40px 16px;
}

/* Pagination Styles */
.leaderboard-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px;
  border-top: 1px solid #444;
}

.pagination-btn {
  background: #333;
  border: 1px solid #444;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pagination-btn:hover {
  background: #444;
  border-color: #555;
}

.pagination-btn.active {
  background: #f39c12;
  color: #000;
  border-color: #f39c12;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-ellipsis {
  color: #999;
  padding: 8px 4px;
  font-size: 14px;
}

.bg-dark.rodeo-details-completed{
  background: #0B0B0B !important;
}
/* Responsive Design for Leaderboard */
@media (max-width: 768px) {
  .leaderboard-listing-panel {
    padding: 16px;
  }
  
  .leaderboard-title {
    font-size: 24px;
  }
  
  .leaderboard-tabs {
    flex-wrap: wrap;
  }
  
  .leaderboard-tab-btn {
    flex: 1;
    min-width: 80px;
  }
  
  .event-info-card {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .tie-breaker-info {
    text-align: center;
  }
  
  .player-info {
    gap: 8px;
  }
  
  .player-avatar {
    width: 28px;
    height: 28px;
  }
  
  .leaderboard-table-cell {
    padding: 12px 8px;
    font-size: 13px;
  }
  
  .my-pick-badge {
    display: block;
    margin-top: 4px;
    margin-left: 0;
  }
}