html {
  font-size: 16px;
}

@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: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.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: 
      ;
}

:root {
    --wildcat-purple: #492365;
    --university-gray: #4a494d;
    --purple-rush: #70569e;
    --frosted-thistle: #cbc3dc;
    --purple-cloud: #f3eff6;
}

.layout-container {
    display: flex;
    flex: 1 0 auto;
    min-height: 0;
}

.main-content {
    margin-left: 90px;
    flex: 1;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.btn-grad-purple {
    background-image: linear-gradient(to right, #5C258D 0%, #4389A2 51%, #5C258D 100%);
    text-align: center;
    text-transform: initial;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 10px;
    display: block;
}

.btn-grad-purple:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
}

.sidebar-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 10px;
}

.sidebar-nav-link, .sidebar-header a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}

.sidebar-header a:hover {
    color: #e1e8ed;
}

.btn-danger {
    background-image: linear-gradient(to right, #e52d27 0%, #b31217 51%, #e52d27 100%);
    text-align: center;
    text-transform: initial;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
}

.btn-danger:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
}

.footer {
    background: #fff;
    border-top: 1px solid #e1e8ed;
    padding: 16px 20px;
    color: #666;
    line-height: normal;
    margin-top: auto;
    flex-shrink: 0;
}

.content-header {
    background: linear-gradient(90deg, rgba(73,35,101,1) 0%, rgba(112,86,158,1) 100%);
    color: #fff;
    border-bottom: 1px solid rgba(74,73,77,0.06);
    padding: 10px 15px;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.content-header a,
.content-header .btn,
.content-header .navbar-text {
    color: #fff;
}

.content-body {
    flex: 1 0 auto;
    min-height: 0;
    overflow: visible;
    padding-bottom: 2rem;
}


.btn-grad-green {
    background-image: linear-gradient(to right, #603813 0%, #b29f94 51%, #603813 100%)
}

.btn-grad-green {
    text-align: center;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 10px;
    display: block;
}

    .btn-grad-green:hover {
        background-position: right center; /* change the direction of the change here */
        color: #fff;
        text-decoration: none;
    }
.btn-grad-orange {
    background-image: linear-gradient(to right, #FFB75E 0%, #ED8F03 51%, #FFB75E 100%)
}
.btn-grad-orange {
    text-align: center;
    text-transform: initial;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 10px;
    display: block;
}

    .btn-grad-orange:hover {
        background-position: right center;
        color: floralwhite;
        text-decoration: none;
    }

.glass-button {
    display: inline-block;
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    text-decoration: none;
    text-transform: initial;
    background-color: rgba(255, 255, 255, 0.15); /* Transparent white background */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    backdrop-filter: blur(10px); /* The key to the frosted glass effect */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

    .glass-button:hover {
        background-color: rgba(255, 255, 255, 0.25); /* Slightly less transparent on hover */
    }
/* Brand-aligned cards and profiles for Info pages */
.brand-card .card-header {
  background: linear-gradient(90deg, var(--wildcat-purple) 0%, var(--purple-rush) 100%);
  color: #fff;
}

.profile-card .profile-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-top-left-radius: .9rem;
  border-top-right-radius: .9rem;
}

.profile-title {
  color: var(--wildcat-purple);
}

.fancy-link {
  color: var(--wildcat-purple);
  text-decoration: none;
}
.fancy-link:hover {
  color: var(--purple-rush);
  text-decoration: underline;
}
