/* Define globals */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
  }
  
  :root {
    --primary-font: "Raleway", sans-serif;
    --title-font: "Raleway", sans-serif;
  
    --primary-color: red;
    --secondary-color: yellow;
  
    font-family: 'Varela Round', sans-serif;
  }
  
  .popup {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 300px;
      background: white;
      padding: 20px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
      border-radius: 10px;
  }
  .popup .close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 20px;
      cursor: pointer;
  }
  .overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
  }

  #welcome-block {
    padding: 5rem 0 5rem;
    background: url(../images/bg.jpg);
    background-size: cover;
    background-position: center;
    height: calc(100vh - 80px);
  }
  
  

  .welcome-text {
    text-align: center;
    margin-top: 2rem;
  }
  
  .welcome-text h1 {
    color: #fff;
    font-weight: 400;
  }
  
  .welcome-text h1 #hi {
    font-weight: 900;
  }
  
  .hidden {
    display: inline-block;
    /* opacity: 0; */
    /* Start hidden */
  }
  
  
  .welcome-search {
    padding: 2rem;
    background: rgba(0, 0, 0, .4);
    max-width: 800px;
    margin: 3rem auto 0;
    border-radius: 5px;
  }
  
  .welcome-search textarea {
    width: 100%;
    display: block;
    background: transparent;
    min-height: 70px;
    color: #fff;
    border: 0;
    font-size: 1.25em;
    line-height: 1.4em;
  }
  
  .welcome-search textarea:focus {
    outline: none;
    /* Removes the default focus outline */
    border: none;
    /* Removes the border */
  }
  
  .welcome-search textarea::placeholder {
    color: #fff;
    /* Change this to your desired color */
    font-style: italic;
    /* Optional: customize other styles */
  }
  
  .welcome-search-btn-container {
    border-top: 1px solid rgba(255, 255, 255, .2);
    text-align: center;
    margin: 1rem 0 0;
    padding: 1rem 0 0;
  }
  
  .welcome-search-btn-container button {
    width: 100%;
  }
  
  #prompt-questions {
    border-top: 1px solid rgba(255, 255, 255, .2);
    display: none;
  }
  
  .prompt-question-content {
    color: #fff;
    padding: 1rem 0;
    line-height: 1.6em;
  }
  
  #prompt-questions select {
    width: 100%;
  }
  
  
  .clear-both::after {
    clear: both;
    display: block;
    content: "";
  }
  
  .ask-btn-container {
    float: left;
  }
  
  .ask-btn-container a {
    background: #a75dbe;
    font-size: 1em;
    color: #fff;
    padding: 1rem;
    border: 0;
    border-radius: 5px;
    text-decoration: none;
    display: block;
  }
  
  .ask-btn-container a:hover {
    background: #6a357a;
  }
  
  .ask-btn-not-sure {
    float: right;
  }
  
  .ask-btn-not-sure a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 1rem;
    border-radius: 5px;
  }
  
  .ask-btn-not-sure a:hover {
    background: #0000001c;
  }
  
  
  #return-results-block {
    padding: 3rem 1rem 0;
  }
  
  .spinner h2 {
    font-weight: 400;
    margin-top: 1rem;
  }
  
  .spinner h2 span {
    font-weight: 700;
  }
  
  /* .response-block {
    max-width: 800px;
    margin: 3rem auto;
    border-radius: 5px;
    padding: 1rem;
    background: #f2f2f2;
    display: none;
  } */
  
  
  
  .response-logo {
    height: 30px;
    background: url(../images/rts-logo.png) no-repeat center;
    background-size: auto 80%;
    float: left;
    width: 50px;
    margin-bottom: 20px;
  }
  
  .response-search-ID {
    float: right;
    font-size: .8em;
    text-transform: uppercase;
    color: #999;
    padding: 10px 5px 0 0;
  }
  
  /* .response-block textarea {
    border: 0;
    padding: 2rem;
    border-radius: 5px;
    width: 100%;
    height: 250px;
    font-size: 1.25em;
    line-height: 1.4em;
  } */
  
  /* .response-block textarea:focus {
    outline: none;
    /* Removes the default focus outline */
    /* border: none; */
    /* Removes the border */
  } 
  */
  
  .response-answer {
    position: relative;
  }
  
  .response-title {
    text-transform: uppercase;
    font-weight: 900;
    border-bottom: 1px solid #ccc;
    padding: 1rem 0;
    margin-bottom: 1rem;
    font-size: .8em;
  }
  
  .source-container {
    display: none;
  }
  
  #vectorSearchResults div {
    margin-bottom: .5rem;
    position: relative;
    padding-left: 75px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 5px;
  }
  
  #vectorSearchResults div:hover {
    background: #f2f2f2;
  }
  
  .green {
    display: inline-block;
    background-color: rgb(55, 119, 55);
    color: #fff;
    padding: .5rem;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
  }
  
  .red {
    display: inline-block;
    background-color: rgb(175, 48, 13);
    color: #fff;
    padding: .5rem;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
  }
  
  #vectorSearchResults div a {
    color: #3498db;
    text-decoration: none;
    padding: .5rem;
    display: block;
  }
  
  
  
  .response-bottom-bar {
    border-top: 1px solid #ccc;
    margin: 1rem 0 0 0;
    padding-top: 1rem;
  }
  
  .response-bottom-bar a {
    display: inline-block;
    padding: 1rem;
    text-decoration: none;
    background: #fff;
    color: #3498db;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: .8em;
  }
  
  .response-bottom-bar a:hover {
    background: #3498db;
    color: #fff;
  }
  
  
  #tabstrip {
    padding: 60px 0 0 30px;
    background-image: linear-gradient(to right, #845ec2, #965dc0, #a75dbe, #b75cbb, #c55cb7, #d55daf, #e25fa6, #ed639d, #f86c8f, #fe7982, #ff8778, #ff9671);
    ;
  }
  
  h1 {
    color: var(--primary-color)
  }
  
  .content-title {
    font-size: 1.6em;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
  }
  
  .main-content {
    padding: 30px;
    background: rgb(255, 255, 255);
    min-height: calc(100vh - 146px);
    height: 100%;
  }
  
  .form-item {
    display: block;
    padding: 10px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    border: 1px solid #ccc;
    font-size: 1em;
    margin-top: 10px;
  }
  
  .form-item input {
    width: 100%;
    outline: none;
  }
  
  #questionsSelect {
    outline: none;
    padding: 16px 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
  }
  
  .form-group {
    box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.3);
    flex: 1;
    gap: 10px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 5px;
  }
  
  .search-params {
    display: flex;
    width: 100%;
  }
  
  .form-group-title h3 {
    font-size: 1.4em;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.5em;
    padding-bottom: 15px;
    position: relative;
  }
  
  .form-group-title h3:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 5px;
    width: 10%;
    background-color: #cdcdcd;
  }
  
  .form-group-title h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    height: 1px;
    width: 35%;
    background-color: #dcdcdc;
  }
  
  
  .advanced-btn {
    position: absolute;
    right: 0;
    top: 10px;
    background: transparent;
    border: none;
    font-size: 1em;
    color: blue;
    cursor: pointer;
  }
  
  /* The Modal */
  .modal {
    display: none;
    position: static;
    padding: 2rem;
  }
  
  /* Modal Content */
  .modal-content {
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    max-width: 1400px;
    border-radius: 5px;
    position: relative;
    background: #fff;
  }
  
  
  .width-25 {
    float: left;
    width: 21.25%;
    margin-right: 5%;
    font-size: .8em;
  }
  
  .width-25:last-child {
    margin-right: 0%;
  }
  
  .width-25 input[type=number] {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
  }
  
  .rb-item {
    margin-bottom: 5px;
  }
  
  .settings-title {
    text-transform: uppercase;
    padding: .5rem 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: .5rem;
    font-size: .8em;
    font-weight: 700;
  }
  
  /* Close Button */
  .close {
    color: #aaa;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 28px;
    font-weight: bold;
    display: block;
    padding: 1rem 2rem;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  .spinner {
    position: relative;
    display: none;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .spinner-icon {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  .countdown {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: bold;
  }
  
  .footer {
    font-size: .8em;
    text-align: center;
    color: #999;
  }
  
  .footer a {
    color: #999;
    display: inline-block;
    text-decoration: none;
  }
  
  .disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  /* Button styles for Ask RTS AI and Not Sure buttons */
  .ask-btn-container button,
  .ask-btn-not-sure button {
    background: #a75dbe;
    font-size: 1em;
    color: #fff;
    padding: 1rem;
    border: 0;
    border-radius: 5px;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: center;
    cursor: pointer;
  }
  
  .ask-btn-container button:hover,
  .ask-btn-not-sure button:hover {
    background: #6a357a;
  }
  
  .ask-btn-not-sure {
    float: right;
  }
  
  .ask-btn-not-sure button {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1rem;
    border-radius: 5px;
    display: inline-block;
  }
  
  .ask-btn-not-sure button:hover {
    background: #0000001c;
    border-color: #fff;
  }
  
  /* Disabled button styles */
  button:disabled {
    background: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.5;
  }
  
  /* Spinner visibility */
  .spinner {
    position: relative;
    display: none;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .spinner-icon {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
  }
  
  /* Spinner animation */
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Response block adjustments */
  /* .response-block {
    max-width: 800px;
    margin: 3rem auto;
    border-radius: 5px;
    padding: 1rem;
    background: #f2f2f2;
    display: none;
  } */
  
  .response-bottom-bar button {
    display: inline-block;
    padding: 1rem;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 0.8em;
    cursor: pointer;
  }
  
  .response-bottom-bar button:hover {
    background: #1a6fb3;
  }
  
  /* Footer buttons and links */
  .footer a {
    color: #999;
    display: inline-block;
    text-decoration: none;
    margin-top: 1rem;
  }
  
  .footer a:hover {
    color: #555;
  }
  
  /* Button styles */
  button {
    background: #a75dbe;
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    display: inline-block;
    text-align: center;
  }
  
  button:hover {
    background: #6a357a;
  }
  
  button:disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
  }
  
  #validationMessage {
    display: none;
    color: red;
    margin-top: 5px;
    font-size: 0.9em;
  }
  
  #vectorSearchResults div {
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: #f9f9f9;
  }
  
  #vectorSearchResults div:hover {
    background-color: #f1f1f1;
  }
  
  #vectorSearchResults a {
    color: #3498db;
    text-decoration: none;
  }
  
  #vectorSearchResults a:hover {
    text-decoration: underline;
  }
  
  .modal {
    display: none;
    /* Default hidden */
    position: fixed;
    /* Ensure it's fixed and overlays the page */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    z-index: 1000;
    /* Ensure it overlays other elements */
  }
  
  .modal-content {
    margin: 10% auto;
    /* Center horizontally and vertically */
    padding: 20px;
    width: 80%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1001;
  }
  
  .advanced-settings-btn {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
  }
  
  .advanced-settings-btn a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: linear-gradient(90deg, #845ec2, #d65db1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    font-size: 1rem;
    font-weight: 500;
  }
  
  .advanced-settings-btn a:hover {
    background: linear-gradient(90deg, #d65db1, #845ec2);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  
  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #333;
    font-size: 20px;
    cursor: pointer;
  }
  
  .close:hover {
    color: #000;
  }
  
  
  
  /* Media queries */
  @media only screen and (max-width: 768px) {
  
    .ask-btn-container button,
    .ask-btn-not-sure button {
      width: 100%;
    }
  }
  
  
  /* Small devices (phones, landscape) */
  @media only screen and (max-width: 768px) {
    .configure-options {
      flex-direction: column;
    }
  
    .advanced-btn {
      position: static;
      margin-bottom: 20px;
    }
  }
  
  /* Medium devices (tablets, portrait) */
  @media only screen and (min-width: 769px) and (max-width: 992px) {
    .configure-options {
      flex-direction: column;
    }
  }
  
  /* Large devices (desktops, tablets landscape) */
  @media only screen and (min-width: 993px) and (max-width: 1200px) {}
  
  /* Extra Large devices (large desktops, high-res screens) */
  @media only screen and (min-width: 1201px) {}
  
  /* #region Region Example */
  /* CSS code for your section here */
  /* #endregion */
  
  * {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  
  body {
    margin: 0;
  }
  
  #welcome-block {
    padding: 5rem 0 5rem;
    background: url(../images/bg.jpg);
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    height: fit-content;
  }
  
  .welcome-text {
    text-align: center;
    margin: 2rem;
  }
  
  .welcome-text h1 {
    color: #fff;
    font-weight: 400;
  }
  
  .welcome-text h1 #hi {
    font-weight: 900;
  }
  
  .hidden {
    display: inline-block;
    /* opacity: 0; */
    /* Start hidden */
  }
  
  .content-wrapper {
    padding: 80px 40px;
  }
  
  
  .dash-lnk-container {
    padding-top: 2rem;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem; /* Adds spacing between the cards */
  }
  
  .dash-lnk {
    max-width: 400px;
    padding: 3rem 2rem; /* Increased padding for more height */
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-decoration: none;
    display: inline-block;
    border-radius: 10px; /* Smooth corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds subtle shadow */
    transition: transform 0.3s ease, background 0.3s ease; /* Smooth hover effect */
  }
  
  .dash-lnk:hover {
    background: #6a357a;
    transform: translateY(-5px); /* Slight lift on hover */
  }
  
  .dash-lnk h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem; /* Slightly larger heading */
  }
  
  .dash-lnk-description {
    display: block;
    margin-bottom: 1.5rem; /* Increased spacing for better balance */
    font-size: 1.1rem;
  }
  
  .dash-lnk .dash-lnk-learn-more {
    background: #a75dbe;
    font-size: 1rem;
    color: #fff;
    padding: 0.75rem 1.5rem; /* Larger button for emphasis */
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease; /* Smooth hover effect */
    cursor: pointer;
  }
  
  .dash-lnk:hover .dash-lnk-learn-more {
    background: #8b47a3; /* Slightly darker button on hover */
  }
  

/* IMAGES CSS
**********************************************************************************************
**********************************************************************************************
**********************************************************************************************
**********************************************************************************************
**********************************************************************************************
**********************************************************************************************
**********************************************************************************************
**********************************************************************************************
**********************************************************************************************
**********************************************************************************************
**********************************************************************************************
**********************************************************************************************
**********************************************************************************************
**********************************************************************************************
**********************************************************************************************
**********************************************************************************************
**********************************************************************************************
**********************************************************************************************
**********************************************************************************************
**********************************************************************************************
**********************************************************************************************
*/


* {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

body {
  margin: 0;
}

#welcome-block {
  padding: 5rem 0 5rem;
  background: url(/aiimages/images/bg.jpg);
  background-size: cover;
  background-position: center;
}

.welcome-text {
  text-align: center;
  margin: 2rem;
}

.welcome-text h1 {
  color: #fff;
  font-weight: 400;
}

.welcome-text h1 #hi {
  font-weight: 900;
}

.hidden {
  display: inline-block;
  /* opacity: 0; */
  /* Start hidden */
}

.welcome-search {
  padding: 2rem;
  background: rgba(0, 0, 0, .4);
  max-width: 800px;
  margin: 2rem;
  border-radius: 5px;
}

.welcome-search {
  padding: 2rem;
  background: rgba(0, 0, 0, .4);
  max-width: 800px;
  margin: 3rem auto 0;
  border-radius: 5px;
}

.welcome-search input {
  width: 100%;
  display: block;
  background: transparent;
  color: #fff;
  border: 0;
  font-size: 1.25em;
  line-height: 1.4em;
}

.welcome-search input:focus {
  outline: none;
  /* Removes the default focus outline */
  border: none;
  /* Removes the border */
}

.welcome-search input::placeholder {
  color: #fff;
  /* Change this to your desired color */
  font-style: italic;
  /* Optional: customize other styles */
}

.welcome-search-btn-container {
  border-top: 1px solid rgba(255, 255, 255, .2);
  text-align: center;
  margin: 1rem 0 0;
  padding: 1rem 0 0;
}

.welcome-search-btn-container::after {
  clear: both;
  display: block;
  content: ""
}


.ask-btn-container {
  float: left;
}

.ask-btn-container button {
  background: #a75dbe;
  font-size: 1em;
  color: #fff;
  padding: 1rem;
  border: 0;
  border-radius: 5px;
  text-decoration: none;
  display: block;
}

.ask-btn-container button:hover {
  background: #6a357a;
}

.ask-btn-not-sure {
  float: right;
}

.ask-btn-not-sure button {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 1rem;
  border-radius: 5px;
  background: transparent;
  border: 0;
}

.ask-btn-not-sure button:hover {
  background: #0000001c;
}

.image-library {
  background: #f2f2f2;
  border-top: 1px solid #ccc;
}

.outer-container {
  max-width: 1600px;
  width: 96%;
  margin: 0 auto;
  padding: 3rem 0;
}

#imageResults,
#searchResults {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Three equal columns */
  gap: 2rem;
  /* Adjust spacing between columns and rows */
}

.image-container {
  background-color: #fff;
  /* Example background color */
  padding: 2rem;
  /* Example padding */
  text-align: center;
  /* Center content */
  box-sizing: border-box;
  /* Include padding and border in size */
  border-radius: 15px;
}

.image-container p {
  line-height: 1.4em;
}

.image-title {
  font-size: 1.25em;
  font-weight: 600;
  padding-top: 1rem;
}

.view-full-image-lnk a {
  background: #a75dbe;
  font-size: .8em;
  color: #fff;
  padding: 1rem .5rem;
  border: 0;
  border-radius: 5px;
  text-decoration: none;
  display: block;
}

.full-image-details {
  margin-top: 2rem;
  font-size: .6em;
  color: #999;
}

.no-results {
  color: #fff;
  text-align: center;
}

.content-wrapper {
  padding: 40px 0 0 0;
}

* {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

body {
  margin: 0;
}

#welcome-block {
  padding: 5rem 0 5rem;
  background: url(../images/bg.jpg);
  background-size: cover;
  background-position: center;
  height: fit-content;
}

.welcome-text {
  text-align: center;
  margin: 2rem;
}

.welcome-text h1 {
  color: #fff;
  font-weight: 400;
}

.welcome-text h1 #hi {
  font-weight: 900;
}

.hidden {
  display: inline-block;
  /* opacity: 0; */
  /* Start hidden */
}

.dash-lnk-container {
  padding-top: 2rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem; /* Adds spacing between the cards */
}

.dash-lnk {
  max-width: 400px;
  padding: 3rem 2rem; /* Increased padding for more height */
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-decoration: none;
  display: inline-block;
  border-radius: 10px; /* Smooth corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds subtle shadow */
  transition: transform 0.3s ease, background 0.3s ease; /* Smooth hover effect */
}

.dash-lnk:hover {
  background: #6a357a;
  transform: translateY(-5px); /* Slight lift on hover */
}

.dash-lnk h3 {
  margin: 0 0 1rem 0;
  font-size: 1.5rem; /* Slightly larger heading */
}

.dash-lnk-description {
  display: block;
  margin-bottom: 1.5rem; /* Increased spacing for better balance */
  font-size: 1.1rem;
}

.dash-lnk .dash-lnk-learn-more {
  background: #a75dbe;
  font-size: 1rem;
  color: #fff;
  padding: 0.75rem 1.5rem; /* Larger button for emphasis */
  border: none;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease; /* Smooth hover effect */
}

.dash-lnk:hover .dash-lnk-learn-more {
  background: #8b47a3; /* Slightly darker button on hover */
}


