/* Common Styles - Baseball Project */
/* Using Bootstrap 5 with Custom Styles */

:root {
  --primary-color: #283772;
  --primary-hover: #1e2a5a;
  --bg-dark: #181928;
  --bg-card-dark: #222232;
  --text-white: #ffffff;
  --text-gray: #A6A6A6;
  --border-color: #D1D1D1;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}


/* Custom Button Styles */
.btn-primary-custom {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  border: none;
  width: 100%;
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: white;
  opacity: 0.95;
}

.btn-outline-custom {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: white;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  width: 100%;
}

.btn-outline-custom:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-color);
  color: white;
  opacity: 0.9;
}

/* Custom Input Styles */
.input-custom {
  border-radius: 50px;
  padding: 12px 16px;
  padding-left: 48px;
  font-size: 14px;
  background-color: white;
  color: #1f2937;
  width: 100%;
  height: 48px;
  border: unset !important;
}

.input-custom:focus {
  border-color: unset !important;
  box-shadow: 0 0 0 0.2rem rgba(40, 55, 114, 0.25);
  outline: none;
}

.input-custom::placeholder {
  color: var(--text-gray);
  font-size: 14px;
}

.input-group-icon {
  position: absolute;
  left: 16px;
  top: 42%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  z-index: 10;

}

/* Font Classes */
.font-avenir {
  font-family: 'Avenir', -apple-system, sans-serif;
}

.font-inter {
  font-family: 'Inter', -apple-system, sans-serif;
}

/* Header Styles */
.header-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 44px;
  border-bottom: 1px solid #585A7C;
  background-color: var(--bg-dark);
}

.bg-card-dark {
  background-color: var(--bg-card-dark);
}

/* Utility Classes */
.text-xs {
  font-size: 12px;
}

.text-sm {
  font-size: 14px;
}

.text-base {
  font-size: 16px;
}

.text-3xl {
  font-size: 32px;
}

/* Spacing Utilities */
.space-y-4>*+* {
  margin-top: 16px;
}

.space-y-6>*+* {
  margin-top: 24px;
}

/* Cursor Utilities */
.cursor-pointer {
  cursor: pointer;
}

.mianbg {
  background: url("../img/mianbg.png") no-repeat left top #181928;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  background-size: cover;
}

.color7C7C7C {
  color: #7C7C7C;
}