/* Custom CSS for Movie Log Application */
body {
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: bold;
    margin-right: auto;
}

.navbar-nav {
    margin-left: auto;
}

.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.text-truncate {
    max-height: 3rem;
    overflow: hidden;
}

.btn-group .btn {
    flex: 1;
}

.card-footer {
    border-top: 1px solid rgba(0,0,0,0.125);
}

/* Rating star styles */
.bi-star-fill {
    color: #ffc107;
}

/* Modern Daily Login Modal Styles */
.custom-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 32, 38, 0.45);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.custom-modal-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 2.5rem 2rem 2rem 2rem;
  min-width: 340px;
  max-width: 95vw;
  position: relative;
  text-align: center;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}
.custom-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
}
.custom-modal-close:hover {
  color: #222;
}
.custom-modal-icon {
  font-size: 3.2rem;
  margin-bottom: 0.5rem;
}
.custom-modal-icon.success i {
  color: #27ae60;
}
.custom-modal-icon.fail i {
  color: #e67e22;
}
.custom-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #222;
}
.custom-modal-message {
  color: #555;
  margin-bottom: 1.2rem;
}
.custom-modal-section {
  background: #f7f8fa;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #333;
}
.custom-modal-section.coin {
  background: #fffbe6;
  color: #b8860b;
  font-weight: 600;
}
.custom-modal-section.days {
  background: #eaf6fb;
  color: #2980b9;
  flex-direction: column;
  font-size: 1.05rem;
}
.custom-modal-section.info {
  background: #eafbe6;
  color: #27ae60;
}
.custom-modal-section i {
  margin-right: 0.5em;
  font-size: 1.2em;
}
@media (max-width: 500px) {
  .custom-modal-card {
    min-width: 90vw;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
}
