/*
 * Alerts
 */

.alert {
  border-radius: 0px;
}


/*
 * Cover page
 */

.content {
  padding-top: 10px;
}

.h-100 {
  min-height: 100vh;
  height: 100vh;
}

.vcenter-item{
    display: flex;
    align-items: center;
}

/*
 * Cover page
 */

h1.cover-heading {
  font-size: 4rem;
}

p.cover-text {
  font-size: 1.7rem;
}

.cover-card {
  background-color: rgba(245, 245, 245, 0.6);
  max-width: 30rem;
  padding-top: 30px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 30px;
  border-radius: 15%;
}
.cover-card-block {
  opacity: 1
}


/*
 * forms
 */
.nolabel label {
  display: none;
}

ul.errorlist {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/*
 * Typefaces
 */

.low-key {
  color: #777777;
  font-weight: 300;
}

.list-title {
  margin-top: 10px;
  margin-bottom: 20px;
}

/*
 * Profile
 */
.profile-image {
  width: 120px;
  clear:both;
  float:left;
}

.profile-text {
  overflow:hidden;
  padding-left:20px
}

h3.profile-title {
  margin-bottom: 0px;
}

.profile-username {
  color: #777777;
  font-weight: 300;
  font-style: italic;
}


/*
 * Hyperlinks
 */
.content a {
  text-decoration: none;
  color: #0d6efd;
}
.content a:hover {
  text-decoration: underline;
  color: #0d6efd;
}


/* form */
form .form-control,
form input.form-control,
form select.form-control,
form textarea.form-control {
  width: 100% !important;
  box-sizing: border-box;
  padding: .375rem .75rem;
  font-size: 1rem;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  display: block;
  height: auto;
}
form textarea.form-control {
  min-height: 3rem;    /* adjust if you want taller textarea */
  resize: vertical;
}

.card {
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(193, 48, 48, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.offcanvas {
  --bs-offcanvas-width: 280px;
}

.offcanvas.offcanvas-end {
  --bs-offcanvas-width: 280px;
  width: 280px;
  max-width: 80vw;
}

.offcanvas {
  background: #212529;
}

.offcanvas .nav-link {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  padding: 12px;
  border-radius: 8px;
}

.offcanvas .nav-link:hover {
  background: #1f1f1f;
  color: #fff;
}

.day-group {
    position: relative;
}

.sticky-day {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    padding: 15px 0;
    margin: 0;
}

.sticky-day a {
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.sticky-day a:hover {
    opacity: 1;
}

html {
    scroll-behavior: smooth;
}

/* arrows */
.next-day-arrow {
    font-size: 1.2rem;
    margin-right: 12px; 
}

.day-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 1.2rem;
    line-height: 1;
}