html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.score-table-header th {
    background-color: #007bff; /* Bootstrap primary blue */
    color: white;
}

.fixed-width-35px {
    width:35px; /* Adjust the width as needed */
    text-align: center; /* Center align the text */
}

.birdie-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid green;
    background-color: lightgreen;
    margin: auto; /* Center the circle within the td */
}

.circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid green;
    background-color: lightgreen;
    display: inline-block;
    vertical-align: middle;
}

.video-img-size {
    width: 240px;
    height: 320px;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    object-fit: cover; /* Ensures the content fits within the specified dimensions */
    vertical-align: top; /* Aligns the elements to the top of their respective cells */
}

dl.row dt, dl.row dd {
    margin-bottom: 0.5rem; /* Adjust this value as needed */
}