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

.make-picks-modal-new .modal-dialog {
  /* max-width: 750px; */
  max-width: 1300px;
  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;
  flex-shrink: 0;
  object-fit: contain;
  border: 1px solid #fff;
}
.event-logo{
  display: flex;
  align-items: flex-start;
}
.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 */
.tabs-scroll-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}
.tabs-scroll-btn {
  flex-shrink: 0;
  background: #3a3a3a;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 20px;
}
.tabs-scroll-btn:hover {
  background: #555;
}
.tabs-scroll-btn-left {
  margin-right: 6px;
}
.tabs-scroll-btn-right {
  margin-left: 6px;
}
.status-tags-section {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
  padding: 5px 0;
}
.status-tags-section::-webkit-scrollbar {
  display: none;
}

.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.grey-label,.status-tags-section .status-tag.grey-label {
  color: #fff;
  background: #757575;
}
.status-list-demo .status-badge.red-label,
.status-tags-section .status-tag.red-label {
  color: #fff;
  background: #ff0000;
}

.status-list-demo .status-badge.green-label,
.status-tags-section .status-tag.green-label {
  color: #fff;
  background: #18550A;
}

.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-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;
  line-height: 1.2;
  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;
}
.leaderboard-head-wrapper{
  display: flex;
  justify-content: space-between;
}
.leaderboard-head-wrapper .event-info-section{
    max-width: 520px;
    width: 100%;
}
.leaderboard-head-wrapper .event-info-card{
  background: transparent !important;
  padding: 0 !important;
}
.leaderboard-head-wrapper .tie-breaker-info{
  text-align: left;
}
.leaderboard-table-container{
  border-radius: 0 !important;
}
.leaderboard-table-row{
  background: #0b0b0b !important;
}
.leaderboard-table-header{
  background: #222 !important;
}
.leaderboard-table-row .player-avatar{
  width: 40px;
  height: 40px;
  margin-right: 4px !important;
}
.leaderboard-table-row .tie-breaker-code{
  font-size: 16px !important;
  font-weight: 400 !important;
}
.leaderboard-table-cell .justify-content-end{
  justify-content: flex-start !important;
}
.leaderboard-table-cell  .text-warning{
  color: #E0B975 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
}
.leaderboard-head-wrapper .search-input{
    padding: 10px 50px 10px 16px !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 4px !important;
}
.leaderboard-table-header.results-head{
  color: #E0B975 !important;
}
.leaderboard-table .my-pick-badge{
  background: #D97706 !important;
  color: #fff !important;
  border-radius: 4px !important;
}
.my_picks_panel .pick_item{
  border-bottom: none !important;
}
.my_picks_panel .pick_item{
   padding: 5px 0;
}
.my_picks_panel .title_Lg{
  font-size: 18px !important;
}
.my_picks_panel .share_link.text_yellow{
  color: #9CA3AF !important;
  display: flex;
  gap: 6px;
  align-items: center;
}
.my_picks_panel .fa-share-alt:before{
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxOCAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjQ0NzMgNy44NzQwMkw5Ljc1IDE0LjU3MjNWMTAuNzg0Mkw4LjY4NTU1IDEwLjg1MzVDOC41NzU3NCAxMC44NjA2IDguNDYyNjQgMTAuODcwMSA4LjM4NDc3IDEwLjg3NzlWMTAuODc3QzYuOTI0NDkgMTAuOTg5OCA1LjUwMTIgMTEuMzkyNiA0LjE5ODI0IDEyLjA2MTVDMi45ODY4NCAxMi42ODM0IDEuOTA0MjEgMTMuNTI2MiAxIDE0LjU0MlYxMy41NjM1QzEuMDAyNTcgMTEuNDEyMiAxLjgwNzQ4IDkuMzM4OTIgMy4yNTc4MSA3Ljc1QzQuNzA4MTYgNi4xNjExNCA2LjY5OTY5IDUuMTcwOTggOC44NDE4IDQuOTcyNjZMOS43NSA0Ljg4ODY3VjEuMTc2NzZMMTYuNDQ3MyA3Ljg3NDAyWiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIi8+Cjwvc3ZnPgo=);
  width: 18px;
  height: 16px;
  background-size: contain !important;
  font-size: 0 !important;
  display: block;
  opacity: 0.4;
}
.share-modal .modal-header{
  border: none !important;
}
.share-modal .modal-share{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.share-modal .modal-header-text{
  margin-bottom: 0 !important;
}
.share-modal .modal-share button{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.share-modal .modal-share .fa-copy-btn{
  background: #18550A !important;
  padding: 7px 8px !important;
  border-radius: 8px !important;
  color: #fff !important;
  border: none !important;
  justify-content: center !important;
  font-size: 16px !important;

}
.share-modal .modal-content.custom-modal{
    margin-left: 15px;
    margin-right: 15px;
}
.view-picks-events-list .event-name {
    align-items: center;
}
.leader_Pfrs .table th{
  white-space: nowrap;
}
.share-modal .btn-close{
    filter: invert(1);
}
.share-modal .modal-header-text {
  font-size: 20px !important;
}
.leader_Pfrs .table th:nth-child(3){
  min-width: 70px;
}
.event-info-section .event-details{
  display: flex;
  align-items: flex-start;
}
.event-info-section .event-details .event-title{
  font-size: 22px !important;
  text-align: left;
}
.event-info-section .event-details p{
  text-align: left !important;
}
.promo_Code_Icon-href{
  margin-top: 10px;
  display: inline-flex;
  font-size: 16px;
  color: #fff !important;
  gap: 8px;
  align-items: center;
}
.promo_Code_Icon{
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjcyIDE2LjQ0MDNDMTEuMDU3MyAxMC44MjM0IDkuMTY5OTkgOC45NTE0MSA3LjQ0OTIgNi45ODI4NEM3LjkxMjAyIDQuNTgzOCA0Ljg1ODI3IC0yLjI2MjkyIDEuMTE2NzggMC43NTQ2NDRDLTIuNDY4OTkgMy42NDcwNyAzLjUwODAyIDguMDE1MzkgNi4wMjM5NyA3LjcwMzYyQzcuMjgyNjcgMTEuNzYwMiAxMi44NDk1IDE2Ljk1MTUgMTYuNzIgMTYuNDQwM1pNNi4wMjQ2OSA2LjE0MzM2QzQuMTY0NzYgNi41MDUxOCAwLjQwNTk2OSAzLjU4MDU3IDIuMjQ5MzIgMi4wODc1MkMzLjk2MjE5IDAuNzAwMjk5IDYuMDI0NjkgMy42NDc3OSA2LjAyNDY5IDYuMTQzMzZaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNNi4wMjQ2OCAxMC4yOTYzQzMuNTA4MDEgOS45ODQ1NiAtMi40NjkgMTQuMzUyOSAxLjExNjc3IDE3LjI0NTNDNC44NTgyNiAyMC4yNjI5IDcuOTEyMDEgMTMuNDE2OSA3LjQ0OTE5IDExLjAxNzFDOS4xNjk5OCA5LjA0ODU0IDExLjA1NzMgNy4xNzY1MSAxNi43MiAxLjU2MDQxQzEyLjg0ODggMS4wNDg0MiA3LjI4MjY2IDYuMjQwNDkgNi4wMjQ2OCAxMC4yOTYzWk0yLjI0OTMxIDE1LjkxMzlDMC40MDU5NjIgMTQuNDIwOCA0LjE2NTQ3IDExLjQ5NTUgNi4wMjQ2OCAxMS44NTczQzYuMDI0NjggMTQuMzUyOSAzLjk2MjkgMTcuMzAwNCAyLjI0OTMxIDE1LjkxMzlaTTE3LjM0OTQgOS41NzU1NEMxNy40MzM3IDkuNTc4MzggMTcuNTE3OCA5LjU2NDM0IDE3LjU5NjcgOS41MzQyNkMxNy42NzU1IDkuNTA0MTggMTcuNzQ3NCA5LjQ1ODY4IDE3LjgwODEgOS40MDA0N0MxNy44Njg4IDkuMzQyMjUgMTcuOTE3MSA5LjI3MjUyIDE3Ljk1IDkuMTk1NDFDMTcuOTgzIDkuMTE4MzEgMTggOS4wMzU0MSAxOCA4Ljk1MTY1QzE4IDguODY3ODkgMTcuOTgzIDguNzg0OTkgMTcuOTUgOC43MDc4OUMxNy45MTcxIDguNjMwNzggMTcuODY4OCA4LjU2MTA1IDE3LjgwODEgOC41MDI4M0MxNy43NDc0IDguNDQ0NjIgMTcuNjc1NSA4LjM5OTEyIDE3LjU5NjcgOC4zNjkwNEMxNy41MTc4IDguMzM4OTYgMTcuNDMzNyA4LjMyNDkyIDE3LjM0OTQgOC4zMjc3NkMxNy4xODYyIDguMzMzMjQgMTcuMDMxNiA4LjQwMTM3IDE2LjkxODIgOC41MTc3N0MxNi44MDQ3IDguNjM0MTcgMTYuNzQxMyA4Ljc4OTc1IDE2Ljc0MTMgOC45NTE2NUMxNi43NDEzIDkuMTEzNTUgMTYuODA0NyA5LjI2OTEyIDE2LjkxODIgOS4zODU1M0MxNy4wMzE2IDkuNTAxOTMgMTcuMTg2MiA5LjU3MDA2IDE3LjM0OTQgOS41NzU1NFpNMTQuODMyNyA5LjU3NTU0QzE0LjkxNzEgOS41NzgzOCAxNS4wMDEyIDkuNTY0MzQgMTUuMDggOS41MzQyNkMxNS4xNTg4IDkuNTA0MTggMTUuMjMwNyA5LjQ1ODY4IDE1LjI5MTQgOS40MDA0N0MxNS4zNTIxIDkuMzQyMjUgMTUuNDAwNCA5LjI3MjUyIDE1LjQzMzQgOS4xOTU0MUMxNS40NjYzIDkuMTE4MzEgMTUuNDgzMyA5LjAzNTQxIDE1LjQ4MzMgOC45NTE2NUMxNS40ODMzIDguODY3ODkgMTUuNDY2MyA4Ljc4NDk5IDE1LjQzMzQgOC43MDc4OUMxNS40MDA0IDguNjMwNzggMTUuMzUyMSA4LjU2MTA1IDE1LjI5MTQgOC41MDI4M0MxNS4yMzA3IDguNDQ0NjIgMTUuMTU4OCA4LjM5OTEyIDE1LjA4IDguMzY5MDRDMTUuMDAxMiA4LjMzODk2IDE0LjkxNzEgOC4zMjQ5MiAxNC44MzI3IDguMzI3NzZDMTQuNjY5NSA4LjMzMzI0IDE0LjUxNDkgOC40MDEzNyAxNC40MDE1IDguNTE3NzdDMTQuMjg4IDguNjM0MTcgMTQuMjI0NiA4Ljc4OTc1IDE0LjIyNDYgOC45NTE2NUMxNC4yMjQ2IDkuMTEzNTUgMTQuMjg4IDkuMjY5MTIgMTQuNDAxNSA5LjM4NTUzQzE0LjUxNDkgOS41MDE5MyAxNC42Njk1IDkuNTcwMDYgMTQuODMyNyA5LjU3NTU0WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTEyLjMxNTcgOS41NzU3MUMxMi40MDAxIDkuNTc4NTQgMTIuNDg0MiA5LjU2NDUgMTIuNTYzIDkuNTM0NDNDMTIuNjQxOCA5LjUwNDM1IDEyLjcxMzcgOS40NTg4NSAxMi43NzQ0IDkuNDAwNjNDMTIuODM1MSA5LjM0MjQyIDEyLjg4MzQgOS4yNzI2OSAxMi45MTY0IDkuMTk1NThDMTIuOTQ5NCA5LjExODQ3IDEyLjk2NjMgOS4wMzU1NyAxMi45NjYzIDguOTUxODJDMTIuOTY2MyA4Ljg2ODA2IDEyLjk0OTQgOC43ODUxNiAxMi45MTY0IDguNzA4MDVDMTIuODgzNCA4LjYzMDk1IDEyLjgzNTEgOC41NjEyMSAxMi43NzQ0IDguNTAzQzEyLjcxMzcgOC40NDQ3OSAxMi42NDE4IDguMzk5MjkgMTIuNTYzIDguMzY5MjFDMTIuNDg0MiA4LjMzOTEzIDEyLjQwMDEgOC4zMjUwOSAxMi4zMTU3IDguMzI3OTJDMTIuMTUyNiA4LjMzMzQgMTEuOTk4IDguNDAxNTMgMTEuODg0NSA4LjUxNzk0QzExLjc3MTEgOC42MzQzNCAxMS43MDc3IDguNzg5OTEgMTEuNzA3NyA4Ljk1MTgyQzExLjcwNzcgOS4xMTM3MiAxMS43NzExIDkuMjY5MjkgMTEuODg0NSA5LjM4NTdDMTEuOTk4IDkuNTAyMSAxMi4xNTI2IDkuNTcwMjMgMTIuMzE1NyA5LjU3NTcxWk0zLjUwNjk4IDkuNTc1NzFDMy41OTEzOCA5LjU3ODU0IDMuNjc1NDggOS41NjQ1IDMuNzU0MjkgOS41MzQ0M0MzLjgzMzA5IDkuNTA0MzUgMy45MDQ5OSA5LjQ1ODg1IDMuOTY1NyA5LjQwMDYzQzQuMDI2NDEgOS4zNDI0MiA0LjA3NDY5IDkuMjcyNjkgNC4xMDc2NiA5LjE5NTU4QzQuMTQwNjQgOS4xMTg0NyA0LjE1NzYzIDkuMDM1NTcgNC4xNTc2MyA4Ljk1MTgyQzQuMTU3NjMgOC44NjgwNiA0LjE0MDY0IDguNzg1MTYgNC4xMDc2NiA4LjcwODA1QzQuMDc0NjkgOC42MzA5NSA0LjAyNjQxIDguNTYxMjEgMy45NjU3IDguNTAzQzMuOTA0OTkgOC40NDQ3OSAzLjgzMzA5IDguMzk5MjkgMy43NTQyOSA4LjM2OTIxQzMuNjc1NDggOC4zMzkxMyAzLjU5MTM4IDguMzI1MDkgMy41MDY5OCA4LjMyNzkyQzMuMzQzODUgOC4zMzM0IDMuMTg5MjUgOC40MDE1MyAzLjA3NTggOC41MTc5NEMyLjk2MjM1IDguNjM0MzQgMi44OTg5MyA4Ljc4OTkxIDIuODk4OTMgOC45NTE4MkMyLjg5ODkzIDkuMTEzNzIgMi45NjIzNSA5LjI2OTI5IDMuMDc1OCA5LjM4NTdDMy4xODkyNSA5LjUwMjEgMy4zNDM4NSA5LjU3MDIzIDMuNTA2OTggOS41NzU3MVpNMC45OTEwMzEgOS41NzU3MUMxLjA3NTQyIDkuNTc4NTQgMS4xNTk1MyA5LjU2NDUgMS4yMzgzMyA5LjUzNDQzQzEuMzE3MTQgOS41MDQzNSAxLjM4OTA0IDkuNDU4ODUgMS40NDk3NSA5LjQwMDYzQzEuNTEwNDYgOS4zNDI0MiAxLjU1ODc0IDkuMjcyNjkgMS41OTE3MSA5LjE5NTU4QzEuNjI0NjkgOS4xMTg0NyAxLjY0MTY4IDkuMDM1NTcgMS42NDE2OCA4Ljk1MTgyQzEuNjQxNjggOC44NjgwNiAxLjYyNDY5IDguNzg1MTYgMS41OTE3MSA4LjcwODA1QzEuNTU4NzQgOC42MzA5NSAxLjUxMDQ2IDguNTYxMjEgMS40NDk3NSA4LjUwM0MxLjM4OTA0IDguNDQ0NzkgMS4zMTcxNCA4LjM5OTI5IDEuMjM4MzMgOC4zNjkyMUMxLjE1OTUzIDguMzM5MTMgMS4wNzU0MiA4LjMyNTA5IDAuOTkxMDMxIDguMzI3OTJDMC44Mjc4OTggOC4zMzM0IDAuNjczMjkzIDguNDAxNTMgMC41NTk4NDUgOC41MTc5NEMwLjQ0NjM5NiA4LjYzNDM0IDAuMzgyOTggOC43ODk5MSAwLjM4Mjk4IDguOTUxODJDMC4zODI5OCA5LjExMzcyIDAuNDQ2Mzk2IDkuMjY5MjkgMC41NTk4NDUgOS4zODU3QzAuNjczMjkzIDkuNTAyMSAwLjgyNzg5OCA5LjU3MDIzIDAuOTkxMDMxIDkuNTc1NzFaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNNy45MTA0MiA5LjU3NTcxQzcuOTk0ODEgOS41Nzg1NCA4LjA3ODkxIDkuNTY0NSA4LjE1NzcyIDkuNTM0NDNDOC4yMzY1MyA5LjUwNDM1IDguMzA4NDMgOS40NTg4NSA4LjM2OTE0IDkuNDAwNjNDOC40Mjk4NSA5LjM0MjQyIDguNDc4MTIgOS4yNzI2OSA4LjUxMTEgOS4xOTU1OEM4LjU0NDA3IDkuMTE4NDcgOC41NjEwNiA5LjAzNTU3IDguNTYxMDYgOC45NTE4MkM4LjU2MTA2IDguODY4MDYgOC41NDQwNyA4Ljc4NTE2IDguNTExMSA4LjcwODA1QzguNDc4MTIgOC42MzA5NSA4LjQyOTg1IDguNTYxMjEgOC4zNjkxNCA4LjUwM0M4LjMwODQzIDguNDQ0NzkgOC4yMzY1MyA4LjM5OTI5IDguMTU3NzIgOC4zNjkyMUM4LjA3ODkxIDguMzM5MTMgNy45OTQ4MSA4LjMyNTA5IDcuOTEwNDIgOC4zMjc5MkM3Ljc0NzI4IDguMzMzNCA3LjU5MjY4IDguNDAxNTMgNy40NzkyMyA4LjUxNzk0QzcuMzY1NzggOC42MzQzNCA3LjMwMjM3IDguNzg5OTEgNy4zMDIzNyA4Ljk1MTgyQzcuMzAyMzcgOS4xMTM3MiA3LjM2NTc4IDkuMjY5MjkgNy40NzkyMyA5LjM4NTdDNy41OTI2OCA5LjUwMjEgNy43NDcyOCA5LjU3MDIzIDcuOTEwNDIgOS41NzU3MVoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=);
  width: 18px;
  height: 18px;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  font-size: 0 !important;
  display: block;
}
.btn-perf-wrap-container{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.for-desktop {
  display: block !important;
}

.for-mob {
  display: none !important;
}
/* Responsive design */
@media (max-width: 768px) {
  .for-desktop{
    display: none !important;
  }
  .for-mob{
    display: block !important;
  }
  .col-md-6 .rodeo-details-btn-group,
  .col-md-6 .rodeo-details-btn-group .rodeo-details-btn,
  .rodeo-details-btn-group > a,
  .rodeo-details-btn-group > a{
    flex: 1;
  }
  .rodeo-details-btn-group{
    display: flex;
  }
  .rodeo-details-btn-group > a,
  .rodeo-details-btn-group > a{
    text-align: center;
  }
  #legend-content .legend-item{
    flex-direction: row;
    gap: 8px;
  }
  .make-picks-modal-new-content .modal-header-section{
    flex-direction: row;
  }
  .btn-perf-wrap-container{
    width: 100%;
  }
  .btn-perf-wrap-container{
    align-items: center;
    justify-content: center;
  }
  .events-list-section{
    max-height: 55vh !important;
  }
  .leaderboard-head-wrapper{
    flex-direction: column;
  }
  .leaderboard-head-wrapper .tie-breaker-info{
    text-align: center;
  }
  .rodeo-details-btn-group{
    width: 100%;
  }
  .rodeo-details-maxwidth .col-md-6.mb-3 div{
    width: 100%;
  }
  .rodeo-details-maxwidth > .px-4{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .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: 560px;
  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%, #E0B975 100%);
  color: #2d2d2d;
  padding: 20px;
  border-radius: 16px;
  position: relative;
  outline: none;
}
.not-picked-opacity{
  opacity: 0.6;
}
.rider-info .rider-name--winner{
  color: #114006 !important;
    font-weight: 700;
    font-size: 18px;
}
.lh-35{
  line-height: 35px;
}
.white-color{
  color: #fff !important;
}
/* 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;
  width: 100%;
  padding-right: 25px;
}

.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-column-headers {
  display: flex;
  /* justify-content: space-between; */
  padding: 4px 0 8px 0;
  border-bottom: 1px solid rgba(45, 45, 45, 0.2);
  margin-bottom: 4px;
}

.view-picks-column-headers .column-header {
  font-size: 12px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.1);
  padding: 4px 8px;
  display: inline-block;
}

.event-name-text {
  display: flex;
  flex-direction: column;
}

.event-winners {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.65);
  font-weight: 400;
  margin-top: 1px;
}

.rider-name--strikeout {
  text-decoration: line-through;
  opacity: 0.7;
}

.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: 500px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.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: 10px;
}
.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: 56px;
  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: 5px;
  padding-bottom: 5px;
}
 
.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;
  gap: 12px;
}

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

.legend-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
}


.legend-text {
  color: #cccccc;
  font-size: 13px;
  line-height: 1.4;
  flex: 1;
}

/* Remove old legend badge styles */
.legend-badge {
  display: none;
}

.legend-label {
  display: none;
}

/* Winner Styles for MakePicksModal */
.event-item.winner {
  border: 2px solid #ffd700;
  background: linear-gradient(135deg, #242424 0%, #2a2a0a 100%);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.winner-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  color: #ffd700;
  font-size: 12px;
  font-weight: bold;
}

.winner-indicator .fas.fa-crown {
  font-size: 14px;
  color: #ffd700;
}

.winner-text {
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.winner-status {
  display: flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.winner-status .fas.fa-trophy {
  font-size: 14px;
}

/* 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;
  margin-bottom: 30px;
}

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

.leaderboard-table-header {
  background: #333;
  color: #fff;
  padding: 14px 15px;
  text-align: left;
  font-weight: 400;
  font-size: 16px;
}
.leaderboard-table-header.text-center,
.leaderboard-table-cell.text-center{
  text-align: left !important;
}
.leaderboard-table-cell .d-flex{
  justify-content: flex-start !important;
}

.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: flex-start !important;
  align-items: center;
  gap: 8px;
  /* padding: 20px;
  border-top: 1px solid #444; */
  background: #000000 !important;
  margin: 0 !important;
}
.pagination-btn.text-dark{
  color: #000 !important;
  background: #E0B975 !important;
}
.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) {
  .performance_Content h4 .text_grey{
    display: block;
    padding-left: 0;
  }
  .status-tags-section{
    display: block;
  }
  .status-tag{
    margin-right: 6px;
  }
 
  .status-tag.active {
    top: 4px;
    position: relative;
  }
  .main_Navbar .navbar-nav{
    padding-right: 25px;
    padding-left: 5px;
  }
  .main_Navbar .navbar-nav .nav-item{
    width: 100%;
  }
  .my-profile-form.cms-page-content{
    margin-bottom: 20px;
  }
  .leaderboard-pagination{
    margin-bottom: 16px !important;
  }
  .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;
  }
}

/* ==========================================================================
   My Picks Panel Styles
   ========================================================================== */

.my_picks_panel {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 20px;
}

.share_link {
  font-size: 14px;
  text-decoration: none;
  color: #ffc107;
  transition: opacity 0.3s ease;
}

.share_link:hover {
  opacity: 0.8;
  color: #ffc107;
}

.my_picks_list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pick_item {
  display: flex;
  justify-content: space-between;
  /*align-items: center;*/
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #2a2a2a;
}

.pick_item:last-child {
  border-bottom: none;
}

.pick_event_name {
  color: #888;
  font-size: 14px;
  flex: 1;
  width: 48%;
  display: flex;
    gap: 6px;
    align-items: flex-start;
}

.pick_contestant_name {
  color: #E0B975;
  font-size: 14px;
  font-weight: 500;
  text-align: right;
  width: 48%;
}

.pick_contestant_name.not_picked {
  color: #E0B975;
  opacity: 0.4;
}

.pick-status-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
}

.pick-status-icon img {
  width: 16px;
  height: 16px;
}

.pick-event-name-text {
  display: flex;
  flex-direction: column;
}

.pick-event-name-text .event-name-text {
  font-size: 13px;
  color: #888;
}

.pick-event-name-text .event-name-text.not-picked {
  opacity: 0.6;
}

.pick-event-name-text .event-winners {
  font-size: 11px;
  color: rgba(200, 200, 200, 0.65);
  font-weight: 400;
  margin-top: 1px;
}

.my_picks_panel .pick_contestant_name.rider-name--strikeout {
  text-decoration: line-through;
  opacity: 0.5;
}

.my_picks_panel .pick_contestant_name.rider-name--winner {
  color: #22c55e;
  font-weight: 700;
}

/* ==========================================================================
   Don't Miss Out Panel Styles
   ========================================================================== */

.dont_miss_out_panel {
  background: #ffc107;
  border-radius: 8px;
  padding: 20px;
  color: #1a1a1a;
}

.alert_header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.alert_icon {
  font-size: 20px;
  color: #1a1a1a;
}

.alert_title {
  font-size: 18px;
  font-weight: bold;
  color: #1a1a1a;
}

.alert_subtitle {
  font-size: 14px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.upcoming_rodeos {
  margin-bottom: 16px;
}

.rodeo_info {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  color: #1a1a1a;
}

.rodeo_info strong {
  font-weight: 600;
}

.btn_make_picks_now {
  width: 100%;
  background: #1a1a1a;
  color: #ffc107;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn_make_picks_now:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Video Modal Styles - High Z-Index
   ========================================================================== */

.dark-modal .modal-content {
  background: linear-gradient(135deg, #0e0e0e 0%, #0e0e0e 20%);
  border: none;
  border-radius: 12px;
}
 
.info-txt {
  font-size: 15px;
  color: red;
}

.share-modal .modal-content{
background: linear-gradient(135deg, #0e0e0e 0%, #0e0e0e 20%);
  border: none;
  border-radius: 12px;
  color: #fff ;
}
.rfm-marquee{
  margin-right: 20px;
}
.linkcls{
  cursor: pointer;
}
.nolinkcls{
  cursor: default;
}
.dob-reg-cls .input-group{
  flex-wrap: nowrap;
}
.ne-datepicker-container{
  width: 100%;
}
h4.rider-name-content.text-center.pt-2 {
  color: #fff;
  padding: 10px 0;
}
.coupon-code-btn-wrap{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.btn-skip{
  padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
}
.coupon-code-details {
  margin-top: 10px;
  font-size: 16px;
  color: #fff;
}
.password-input-container .invalid-feedback{
  position: absolute;
    left: -39px;
}
.leaderboard-head-wrapper .rodeo-details-logo {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: contain;
  border: 1px solid #fff;
}
.my-picks-status{  
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: block;
  flex-shrink: 0;
  margin-top: 4px;
}
.green-dot{
  background: url("/img/icon-4.png") no-repeat center center;
  background-size: contain;
}
.red-dot {
    background: url("/img/icon-5.png") no-repeat center center;
    background-size: contain;
}
.grey-dot {
background: url("/img/icon-2.png") no-repeat center center;
  background-size: contain;
  filter: grayscale(1);
}
.no-dot {
  background: url("/img/icon-1.png") no-repeat center center;
  background-size: contain;
}
.no-ride-dot {
  background: url("/img/icon-5.png") no-repeat center center;
  background-size: contain;
}
.text_lead-grey{
  color: #999;
    font-size: 16px;
}
.lead-perf-title img{
  width: 22%;
}
/* ============================================================
   Maintenance Mode Page
   ============================================================ */
.maintenance-page {
  min-height: 100vh;
  background: linear-gradient(160deg, #1a0503 0%, #7F1712 55%, #3d0b08 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
}

.maintenance-page::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(224, 185, 117, 0.06);
  pointer-events: none;
}

.maintenance-page::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(224, 185, 117, 0.04);
  pointer-events: none;
}

.maintenance-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.maintenance-logo {
  max-width: 200px;
  margin-bottom: 40px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}

.maintenance-badge {
  display: inline-block;
  background: rgba(224, 185, 117, 0.15);
  border: 1px solid rgba(224, 185, 117, 0.4);
  color: #E0B975;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.maintenance-title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.maintenance-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.maintenance-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.maintenance-divider span {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: #E0B975;
}

.maintenance-divider span:nth-child(1) { width: 8px; opacity: 0.4; }
.maintenance-divider span:nth-child(2) { width: 40px; }
.maintenance-divider span:nth-child(3) { width: 8px; opacity: 0.4; }

.maintenance-footer {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
}
