/* static/css/base.css */
body {
  /* Ensure body fills the viewport but doesn't force extra scroll
     when content is short; 7rem matches the fixed header height. */
  min-height: calc(100vh - 7rem);
  padding-top: 7rem;
}

.page-container {
  margin-top: 0;
}

h1 {
  color: red;
}

.basket-title {
  color: #496bb2;
}

.logout-title {
  color: #496bb2 !important;
}

.video-page-title {
  color: #496bb2;
}

.browse-page-title {
  color: #496bb2;
}
.password-change-title {
  color: #496bb2;
}

.video-wishlist-btn {
  color: #b57edc;
  border: 1px solid #b57edc;
  background-color: transparent;
}

.video-wishlist-btn:hover,
.video-wishlist-btn:focus,
.video-wishlist-btn:active {
  color: #ffffff;
  border-color: #b57edc;
  background-color: #b57edc;
}

.main-search-btn,
.main-search-btn:focus {
  background-color: #496bb2;
  border-color: #496bb2;
}

.main-search-btn:hover,
.main-search-btn:active {
  background-color: #3e5c99;
  border-color: #3e5c99;
}

img.cover {
  height: 300px;
  width: auto;
}

.footer .list-inline > li {
  display: inline-block;
  padding-right: 20px;
  padding-left: 20px;
}

.footer .list-inline > li > a {
  color: #f0f0f0;
  font-size: 14px;
  font-weight: 700;
}

.footer .list-inline > li > a:hover {
  text-decoration: none;
}

h3 {
  font-size: 14px;
  color: #f0f0f0;
  text-decoration: underline;
  font-weight: normal;
}

.footer h4 {
  font-size: 14px;
  color: #f0f0f0;
  text-decoration: underline;
  font-weight: normal;
}

.nav-button {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 6px;
}

.nav-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Header cart icon */
.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.cart-icon {
  font-size: 1.4rem;
  color: #ffffff;
}

.cart-count-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.35rem;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0;
  border-radius: 999px;
  background-color: #dc3545; /* Bootstrap danger red */
  color: #ffffff;
  font-size: 0.7rem;
  line-height: 1.1rem;
  text-align: center;
  font-weight: 700;
}
