/* General contest container */

@font-face {
    font-family: 'Oswald';
    src: url('/fonts/Oswald/Oswald-VariableFont_wght.ttf') format('ttf');
}
 



/* Unique styling for text input fields */
input[type="text"], input[type="email"], input[type="number"] {
  background: transparent; /* Transparent background to match contest aesthetic */
  border: 2px solid transparent; /* Base border (transparent to allow gradient) */
  border-image: linear-gradient(45deg, #007bff, #ff007f) 1; /* Gradient border */
  border-radius: 8px;
  padding: 10px 14px;
 /* Uniform width, matching pickitem */
  height: 42px; /* Uniform height, slightly taller for prominence */
 /* White font color */
  font-family: Arial, sans-serif;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.3s ease, border-image 0.3s ease; /* Smooth animations */
  position: relative; /* For pseudo-elements */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

/* Hover state for interactivity */
input[type="text"]:hover, input[type="email"]:hover, input[type="number"]:hover {
  transform: scale(1.02); /* Slight scale for engagement */
  border-image: linear-gradient(45deg, #00d4ff, #ff4b2b) 1; /* Shift gradient on hover */
}

/* Focus state with glowing effect */
input[type="text"]:focus,input[type="email"]:focus, input[type="number"]:focus {
  outline: none;
  border-image: linear-gradient(45deg, #00ff88, #ffeb3b) 1; /* Bright gradient on focus */
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.5), 0 0 20px rgba(255, 235, 59, 0.3); /* Glowing effect */
  transform: scale(1.05); /* Slight scale for emphasis */
}

/* Animated placeholder */
input[type="text"]::placeholder, input[type="email"]::placeholder, input[type="number"]::placeholder {
  color: rgba(255, 255, 255, 0.7); /* Light white placeholder */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

input[type="text"]:focus::placeholder, input[type="email"]:focus::placeholder, input[type="number"]:focus::placeholder  {
  opacity: 0; /* Fade out placeholder on focus */
  transform: translateY(-10px); /* Slide up for effect */
}

/* Optional: Add a subtle pulse animation on load */
@keyframes pulse {
  0% { box-shadow: 0 0 5px rgba(0, 123, 255, 0.3); }
  50% { box-shadow: 0 0 10px rgba(0, 123, 255, 0.6); }
  100% { box-shadow: 0 0 5px rgba(0, 123, 255, 0.3); }
}

input[type="text"].pulse, input[type="email"].pulse, input[type="number"].pulse {
  animation: pulse 2s infinite ease-in-out; /* Apply pulse to inputs with .pulse class */
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  input[type="text"], input[type="email"], input[type="number"]{
    width: 100%; /* Full width on mobile */
    max-width: 150px; /* Constrain for usability */
    height: 38px; /* Slightly smaller height */
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}
/* Responsive design for mobile */
@media (max-width: 768px) {
  select,
  input[type="text"] {
    width: 100%; /* Full width on mobile */
    max-width: 150px; /* Constrain width */
    height: 36px; /* Slightly smaller height */
    padding: 6px 10px;
    font-size: 0.9rem;
  }
}
input[type="text"]:not(:placeholder-shown),
input[type="email"]:not(:placeholder-shown),
input[type="number"]:not(:placeholder-shown) {
  background: white;
  color: black;
}


/* Unique styling for select fields */
select {
  background: #000000; /* Transparent background to match contest aesthetic */
  border: 2px solid transparent; /* Base border for gradient */
  border-image: linear-gradient(45deg, #007bff, #ff007f) 1; /* Gradient border */
  border-radius: 8px;
  padding: 10px 30px 10px 14px; /* Extra right padding for custom arrow */
  height: 42px; /* Uniform height, matching text inputs */
  color: #fff; /* White font color */
  font-family: Arial, sans-serif;
  font-size: 1rem;
  appearance: none; /* Remove default browser styling */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23fff" d="M2 4l4 4 4-4z"/></svg>'); /* Custom white dropdown arrow */
  background-position: right 10px center;
  background-repeat: no-repeat;
  transition: transform 0.2s ease, box-shadow 0.3s ease, border-image 0.3s ease; /* Smooth animations */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  cursor: pointer;
}

/* Ensure white text for options */
select option {
  background: #333; /* Dark background for dropdown options */
  color: #fff; /* White font for options */
}

/* Hover state for interactivity */
select:hover {
  transform: scale(1.02); /* Slight scale for engagement */
  border-image: linear-gradient(45deg, #00d4ff, #ff4b2b) 1; /* Shift gradient on hover */
}

/* Focus state with glowing effect */
select:focus {
  outline: none;
  border-image: linear-gradient(45deg, #00ff88, #ffeb3b) 1; /* Bright gradient on focus */
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.5), 0 0 20px rgba(255, 235, 59, 0.3); /* Glowing effect */
  transform: scale(1.05); /* Slight scale for emphasis */
}

/* Optional: Add a subtle pulse animation on load */
@keyframes pulse {
  0% { box-shadow: 0 0 5px rgba(0, 123, 255, 0.3); }
  50% { box-shadow: 0 0 10px rgba(0, 123, 255, 0.6); }
  100% { box-shadow: 0 0 5px rgba(0, 123, 255, 0.3); }
}

select.pulse {
  animation: pulse 2s infinite ease-in-out; /* Apply pulse to selects with .pulse class */
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  select {
    height: 38px; /* Slightly smaller height */
    padding: 8px 25px 8px 12px; /* Adjust padding for arrow */
    font-size: 0.9rem;
  }
}
/* Progress bar for pick completion */
.progress-bar-container {
  margin: 20px 0;
  width: 600px; /* Uniform width */
}

.progress-bar {
  height: 20px;
  background: #e9ecef; /* Bootstrap light gray */
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: #28a745; /* Bootstrap success green */
  transition: width 0.3s ease;
}



/* Leaderboard table (white text, uniform columns) */
.leaderboard-table {
  width: 100%;
  max-width: 600px; /* Uniform width */
  border-collapse: collapse;
  margin: 20px auto;
  color: #fff; /* White font */
}

.leaderboard-table th,
.leaderboard-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd; /* Borders for cells */
}

.leaderboard-table th {
  background: #007bff;
  color: #fff; /* White font */
}

.leaderboard-table tr:nth-child(even) {
  background: rgba(248, 249, 250, 0.8); /* Slightly transparent */
}

.leaderboard-table td {
  width: 33.33%; /* Uniform column widths */
}

/* Confidence ranking selectors (white text) */
.confidence-selector {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 5px;
  color: #fff; /* White font */
  cursor: pointer;
}

.confidence-selector.selected {
  background: #ffc107; /* Bootstrap warning yellow */
  color: #fff; /* White font */
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  .team-card {
    width: 150px; /* Smaller uniform width */
    height: 200px; /* Smaller uniform height */
    margin: 5px;
    padding: 8px;
  }

  .matchup-box {
    flex-direction: column;
    width: 100%; /* Full width on mobile */
    height: auto; /* Adjust height for content */
    padding: 10px;
  }

  .matchup-box .vs {
    margin: 10px 0;
  }

  .progress-bar-container,
  .leaderboard-table {
    width: 100%; /* Full width on mobile */
  }

  .leaderboard-table td,
  .leaderboard-table th {
    font-size: 0.9rem;
    padding: 8px;
  }
}
.scoringrtitle,.scoringrhead, .scoringr {
	color:#ffffff;
}
.winbox {background-color:#C0F5BE !important;}
.losebox{background-color:#F9C2BC !important;}
.redcell {
	background-color:red;
	color:#ffffff;
	font-weight:bold;
}
.greencell{
	background-color:green;
	color:#ffffff;
	font-weight:bold;
}
.tteam-name{
	font-family: 'Oswald' !important;
}
.tteam-name:hover{
	color: '#cccccc' !important;
}

<!-- header -->

.navbar-brand img {
    max-height: 40px; /* Ensure logo scales */
}
.nav-link.active {
    font-weight: bold; /* Enhance active state */
}
.btn-danger {
    background-color: #ff4d4d; /* Custom red */
    border-color: #ff4d4d;
}
@media (max-width: 991px) {
    .navbar-nav {
        text-align: center; /* Center nav items on mobile */
    }
}

/* Ensure responsiveness for smaller screens */
@media (max-width: 576px) {
    .pickitem.btn {
        padding: 6px 8px; /* Reduce padding on small screens */
        font-size: 0.9em; /* Slightly smaller text */
    }
    .spread-box {
        min-width: 30px; /* Adjust for smaller screens */
        font-size: 0.85em;
    }
    .tteam-name {
        font-size: 0.9em;
    }
    .check-icon {
        font-size: 1em;
    }
}
/* Pickitem class for team selection or matchup items */
.pickitem {
  background: transparent; /* Transparent background, per your team card preference */
  border: 2px solid #ccc; /* Subtle border for visibility */
  border-radius: 4px;
  width: 290px; /* Uniform width for consistency */
  height: 50px; /* Uniform height for consistency */
  padding: 10px;
  margin: 10px;
  color: #fff; /* White font color, as requested */
  font-family: 'Oswald';
  text-decoration:none;
  font-size:12pt;
  transition: transform 0.2s ease, box-shadow 0.2s ease; /* Hover animation */
  cursor: pointer;
}
.spread-box {
	border: 1px solid #ccc; /* Subtle border for visibility */
  	border-radius: 4px;
  	background-color:#333333;
  	color:#ffffff;
  	width: 40px; /* Uniform width for consistency */
  	height: 25px; 
  	float:left;
  	margin-right:15px;
}
.pickitem:hover {
  transform: scale(1.05); /* Slight scale on hover for engagement */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pickitem.selected {
  background: rgba(0, 128, 255, 0.1); /* Light blue tint for selected state */
  border-color: #007bff; /* Bootstrap primary color */
}

/* Content inside pickitem (e.g., team name, logo) */
.pickitem img {
  max-width: 80px; /* For team logos */
  margin-bottom: 10px;
}

.pickitem h5 {
  font-size: 1.1rem;
  margin: 5px 0;
  color: #fff; /* Ensure white font for team names */
}


.team_name {display:inline;}
.team_name:hover {color:#ffffff !important;}









<!-- footer -->
footer a:hover {
    color: #ff4d4d; /* Red hover effect */
    text-decoration: underline;
}
.social-links i {
    font-size: 1.5rem; /* Larger icons */
}
footer h5 {
    font-weight: bold;
    margin-bottom: 1rem;
}

<!-- index -- >
.hero {
    background: linear-gradient(to right, #1a2a44, #2c3e50); /* Gradient twist */
}
.btn-danger {
    background-color: #ff4d4d;
    border-color: #ff4d4d;
}
.btn-danger:hover {
    background-color: #e63939;
    border-color: #e63939;
}
.card {
    transition: transform 0.2s;
}
.card:hover {
    transform: scale(1.02); /* Subtle hover effect */
}