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;
}

.valid {
    color: green;
}

.invalid {
    color: red;
}

.playlistTitle {
    display: block;
    font-size: 20px !important;
    height: 50px;
    line-height: 20px;
}

.active{
    color:yellow;
}

.landscape-warning {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 128, 128, 0.8); /* Semi-transparent grey */
    z-index: 1000; /* Ensure it sits on top of other content */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1em;
    box-sizing: border-box;
}

/* Message styling */
.landscape-warning .message {
    background: #fff; /* White background for the message box */
    padding: 1em 2em;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    max-width: 90%;
    font-size: 1.2em;
    line-height: 1.4;
}

.pagination {
    text-align: center;
}

.pagination a {
    padding: 0 10px;
    text-decoration: none;
    color: #fff;
}

.pagination span {
    margin: 0 10px;
    color: #fff;
}

.pagination ul {
    text-align: center;
    margin-left: auto;
    margin-top: 15px;
    margin-right: auto;
}

.page-item a {
    color: #333;
}


/* Show the modal only for portrait orientation and small widths */
@media (orientation: portrait) and (max-width: 767px) {
    .landscape-warning {
        display: flex;
    }
}