


.swn-logo {
    color: #136ebf;
    font-family: Roboto Slab;
    letter-spacing: 1px;
    /* font-weight: 600; */
    font-size: 3rem;

  }

 
/* for the login avatar circle in the navbar */
:root {
    --avatar-size: 2.5rem;
    /* --navbar-height: 5rem; */
  }
  
.circle {
background-color: #8a0;
border-radius: 50%;
height: var(--avatar-size);
text-align: center;
width: var(--avatar-size);
}
  
.initials {
font-size: calc(var(--avatar-size) / 2); /* 50% of parent */
line-height: 1;
position: relative;
top: calc(var(--avatar-size) / 4); /* 25% of parent */
}

   /* Add this to your base.css or styles.css */
 #alert-box {
  position: fixed;
  top: 0;
  z-index: 1050;
  width: 100%;
  text-align: center;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

/* start page adjustments */
.homepage-hero {
    min-height: calc(100vh - var(--bs-navbar-padding-y));

    display: flex;
    flex-direction: column;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-overlay {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 1rem;
}
.hero-content {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}

.hero-content .row {
    margin-left: 0;
    margin-right: 0;
}

.main-content {
  height: calc(100vh - var(--bs-navbar-padding-y) * 2); 
}


.homepage-card {
    border-radius: 1rem;

    backdrop-filter: blur(5px);
    color: #fff;

    transition: all 0.2s ease;
}

.homepage-card:hover {
    transform: translateY(-4px);

    background: rgba(0,0,0,0.6);

    color: #fff;
}

.homepage-footer {
    /* position: absolute;
    bottom: 0; */
    width: 100%;
    background: rgba(255,255,255,1);
    padding: 1rem;
}

/* SPINNERs */
.spinner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.5);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 1000;
}



/* Make the control look like a Bootstrap input */
.bootstrap-vs .vscomp-option {
  border: 1px solid #ced4da !important;
  border-radius: 0.375rem !important;
  padding: 0.375rem 0.75rem !important;
  font-size: 1rem !important;
  height: calc(2.25rem + 2px) !important;
}

.vscomp-wrapper.focused .vscomp-toggle-button, .vscomp-wrapper:focus .vscomp-toggle-button {
  border-color: #80bdff !important;
  box-shadow: 0 0 0 0.25rem rgba(0,123,255,.25) !important;
}

 .bootstrap-vs .vscomp-options-container {
  border-color: var(--bs-primary-bg-subtle) !important;
  box-shadow: None !important;
}
/* Hover / focus like Bootstrap */
.bootstrap-vs .vscomp-option:focus,
.bootstrap-vs .vscomp-option.vscomp-focused {
  border-color: var(--bs-primary-bg-subtle) !important;
  box-shadow: 0 0 0 0.25rem var(--bs-primary-bg-subtle) !important;
}

/* Dropdown menu like Bootstrap */
.bootstrap-vs .vscomp-options-container {
  border: 1px solid rgba(0,0,0,.15) !important;
  border-radius: 0.375rem !important;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15) !important;
  padding: 0.25rem !important;
}

/* Options styling → looks like Bootstrap dropdown */
.bootstrap-vs .vscomp-option {
  border-radius: 0.375rem !important;
  padding: 0.375rem 0.75rem !important;
}

.bootstrap-vs .vscomp-option:hover {
  background-color: #f8f9fa !important;
}

