/* Font family utility classes */
.font-montserrat {
  font-family: 'Montserrat', sans-serif;
}

.font-inter {
  font-family: 'Inter', sans-serif;
}

.font-pacifico {
  font-family: 'Pacifico', cursive;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.accent,
.logo,
.special-text {
  font-family: 'Pacifico', cursive;
}

body {
  padding-top: 60px;
  font-family: 'Inter', sans-serif;
}

main{
  min-height: calc(100vh - 60px);
}
.min-vh-main{
  height:calc(100vh - 60px);
}
.form-label{
  font-weight: 500;
}

.form-control:focus {
  box-shadow: none !important;        /* removes the blur/glow */
  border-width: 2px !important;       /* makes the border thicker on focus */
}
input:focus,
textarea:focus,
select:focus {
  box-shadow: none !important;
  border-width: 2px !important;
}

.btn-outline-primary:hover svg{
  fill: white;
}
.btn-outline-primary:focus svg{
  fill: white;
}
.list-group-borderless .list-group-item {
  border: none;
  padding-left: 0;   /* optional: remove extra padding */
  padding-right: 0;  /* optional */
  border-radius: 0;  /* optional: remove rounding */
}
.hover-shadow {
  transition: all 0.3s ease;
}

.hover-shadow:hover {
  box-shadow: var(--bs-box-shadow);
  transform: translateY(-2px); /* optional: lift effect */
}

.cursor-pointer{
  cursor:pointer;
}
.no-underline{
  text-decoration: none;
}

.layout-container{
  /* width:100%; */
  height:100vh;
  padding:0;
  overflow: hidden;
}

strong{
  font-weight: 500;
}

body.has-screen-blocker{
  overflow: hidden;
}
body.has-screen-blocker .screen-blocker{
  display: flex;
}
.screen-blocker{
  position:fixed;
  top:0;
  left:0;
  width: 100%;
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3; /* Light grey border */
  border-top: 5px solid #3498db; /* Blue top border for the "spinning" effect */
  border-radius: 50%; /* Makes it a circle */
  animation: spin 1s linear infinite; /* Applies the spin animation */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* #terminal{
  height: 100%;
}

.blinking-cursor {
    display: inline-block;
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    50% { opacity: 0; }
} */

.console {
    font-family: monospace;
    white-space: pre; /* preserves spaces and line breaks */
    background: #1e1e1e;
    color: white;
    padding: 10px;
    min-height: 200px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    width:100%;
    height: 100%;
    overflow:auto;
}

.blinking-cursor {
    display: inline-block;
    width: 10px;
    animation: blink 1s step-start infinite;
    color: white;
}

@keyframes blink {
    50% { opacity: 0; }
}

.console .green { color: #00ff00; }
.console .red { color: #ff5555; }
.console .yellow { color: #ffff00; }
.console .blue { 
    color: #00bfff; /* nice blue color for info messages */
}
.console .orange { 
    color: #ffae42; /* orange-ish warning color */
}

table.table th{
  font-weight: 500;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection, .select2-container--bootstrap-5.select2-container--open .select2-selection {
    box-shadow: none;
    border-width: 2px;
}

.select2-container--bootstrap-5 .select2-selection--single{
  height: 32px;

}
.select2-container .select2-search--inline .select2-search__field{
  font-family: Inter;
}
.text-sm{
  font-size:0.85rem;
}

.badge{
  font-weight: 500;
}

.tab--chatai .chats {
  padding: 10px;
  background-color: #e9ecef; /* light gray-blue background for the chat area */
  border-radius: 10px;
  overflow-y: auto;
}

.tab--chatai .chats .user {
  margin: 5px 0;
  clear: both;
  float: left;
  background: #d1e7dd; /* soft green for user messages */
  color: #0f5132; /* darker green text for contrast */
  padding: 10px;
  border-radius: 10px;
  max-width: 70%;
}

.tab--chatai .chats .assistant {
  margin: 5px 0;
  clear: both;
  float: right;
  background: #cff4fc; /* soft cyan/blue for assistant messages */
  color: #055160; /* darker cyan text for contrast */
  padding: 10px;
  border-radius: 10px;
  max-width: 70%;
}

 .lang-card {
    transition: all 0.3s ease-in-out;
    margin-bottom: 0.5rem;
  }

  .lang-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  }

  .lang-card img {
    /* max-height: 100px; */
    object-fit: contain;
  }


   .hover-feature {
    transition: all 0.3s ease;
  }
  .hover-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  .text-purple {
    color: #6f42c1;
  }
  .bg-gradient {
    background: linear-gradient(90deg, #007bff, #6610f2);
  }
   .stat-card {
    transition: all 0.3s ease-in-out;
  }
  .stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  .w-100 svg{
    width: 100%;
  }

    .accordion-button:focus {
    box-shadow: none;
  }
  .accordion-button {
    border-radius: 0.5rem;
    background-color: #f8f9fa;
  }
  .accordion-item + .accordion-item {
    margin-top: 0.5rem;
  }

 .opportunities-card .card .btn-apply {
  display: block;
}

.opportunities-card .card .btn-applied {
  display: none;
}

/* When applied */
.opportunities-card .card.applied .btn-apply {
  display: none;
}

.opportunities-card .card.applied .btn-applied {
  display: block;
}



.opportunities-card .card .icon-save {
  display: block;
}

.opportunities-card .card .icon-saved {
  display: none;
}

/* When applied */
.opportunities-card .card.saved .icon-save {
  display: none;
}

.opportunities-card .card.saved .icon-saved {
  display: block;
}