.card-course-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-course-item img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.card-body a {
  text-decoration: none;
}

.card-des {
  color: darkgrey;
}

.btn-close-custom {
  width: 1rem;
  height: 1rem;
  font-size: 0.5rem;
}

.movie {
  height: 400px; /* Adjust this value as needed */
  margin-bottom: 15px;
}

.movie .img-movie {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.movie .title {
  margin-top: -8px;
}

hr.custom-hr {
  border-top: 2px solid white;
  margin-top: 40px;
}

.footer {
  text-decoration: none;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: #000;
  aspect-ratio: 16/9;
  margin-top: 30px;
  margin-bottom: 30px;
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CSS for the search button */
.btn-outline-success {
  white-space: nowrap; /* Prevent text from wrapping */
  padding: 5px 10px; /* Adjust padding as needed */
  width: max-content; /* Set a fixed width for the button */
  text-align: center; /* Center the text */
}

@media (max-width: 576px) {
  .btn-outline-success {
    width: auto; /* Allow the button to resize on smaller screens */
  }
}
.table-custom th, .table-custom td {
  text-align: center;
  vertical-align: middle;
}

.table-custom img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 5px; /* Optional: for rounded corners */
}

.movie-info {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.movie-names {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.primary-name {
  font-weight: 500;
}

.origin-name {
  font-size: 0.875rem;
  color: #666;
}

.movie-info a {
  text-decoration: none;
  color: #fff;
}

.modal-content {
  background-color: #212529;
  color: #dee2de;
}

:root {
  --bs-border-color: #495057;
}

.dropdown-menu {
  min-width: 400px;
  border: none;
  padding: 5px;
}

.td-type a {
  color: rgba(240, 248, 255, 0.541);
}

.td-type:hover {
  background-color: #314aad;
  border-radius: 5px;
}

.td-type:hover a {
  color: #ffffff;
}

/* Light Mode */
:root {
  --bg-color: #ffffff;
  --text-color: #333;
  --input-bg: #f8f9fa;
  --input-border: #ccc;
  --button-bg: #0d6efd;
  --button-text: #fff;
  --subtext-color: #6c757d;
  --link-color: #0d6efd;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #121212;
    --text-color: #f5f5f5;
    --input-bg: #1e1e1e;
    --input-border: #333;
    --button-bg: #0a58ca;
    --button-text: #fff;
    --subtext-color: #b0b0b0;
    --link-color: #3ea6ff;
  }
}
/* Apply Theme */
body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

.theme-card {
  background-color: var(--bg-color);
  color: var(--text-color);
  max-width: 400px;
  width: 100%;
  border-radius: 15px;
}

.theme-text {
  color: var(--text-color);
}

.theme-input {
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  color: var(--text-color);
}

.theme-input:focus {
  border-color: var(--button-bg);
  box-shadow: 0 0 5px var(--button-bg);
}

.theme-subtext {
  color: var(--subtext-color);
}

.theme-button {
  background-color: var(--button-bg);
  color: var(--button-text);
}

.theme-link {
  color: var(--link-color);
  text-decoration: none;
}

.theme-link:hover {
  text-decoration: underline;
}

.theme-button:hover {
  background-color: rgba(13, 110, 253, 0.631372549);
}

/*# sourceMappingURL=style.css.map */
