/* Fonts */

@font-face {
  font-family: 'Regular';
  src: url('../font/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Medium';
  src: url('../font/Poppins-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'SemiBold';
  src: url('../font/Poppins-SemiBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Bold';
  src: url('../font/Poppins-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Black';
  src: url('../font/Poppins-Black.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* .main-container {
  opacity: 0;
  animation: fadeInUp 0.4s ease-out forwards !important;
  will-change: opacity !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
  }

  to {
    opacity: 1 ;
  }
} */

:root {
  /* Color Branding */
  --primaryColor: #FDDF94;
  --highlight75: #6EBEFF;
  --highlight50: #9ED3FF;
  --highlight25: #CFE9FF;
  --highlight15: #c8ecc1;
  --dirtyWhite: #FFF9F0;
  --pureWhite: #FFFFFF;
  --darkgreen: #5b6558;
  --black: #2C2C2C;

  /* Typography */
  --Regular: 'Regular';
  --Medium: 'Medium';
  --Bold: 'Bold';
  --SemiBold: 'SemiBold';
  --Black: 'Black';
}

/* Font families */
.text-reg {
  font-family: 'Regular', sans-serif;
  letter-spacing: -0.03em;
  color: var(--black);
}

.tooltip-inner {
  font-family: 'Regular', sans-serif!important;
  letter-spacing: -0.03em!important;
}

.text-med {
  font-family: 'Medium', sans-serif;
  letter-spacing: -0.03em;
  color: var(--black);

}

.text-bold {
  font-family: 'Bold', sans-serif;
  letter-spacing: -0.03em;
  color: var(--black);
}

.text-sbold {
  font-family: 'SemiBold', sans-serif;
  letter-spacing: -0.03em;
  color: var(--black);
}

.text-black {
  font-family: 'Black', sans-serif;
  letter-spacing: -0.03em;
  color: var(--black);
}

/* Font sizes */
.text-12 {
  font-size: 12px;
}

.text-14 {
  font-size: 14px;
}

.text-16 {
  font-size: 16px;
}

.text-18 {
  font-size: 18px;
}

.text-20 {
  font-size: 20px;
}

.text-22 {
  font-size: 22px;
}

.text-25 {
  font-size: 25px;
}

.text-30 {
  font-size: 30px;
}

/* Input other stylings that can be used globally */

/* Course Pill */
.course-badge {
  background-color: var(--highlight50);
  color: var(--black);
}

.learderboard-badge {
  background-color: var(--highlight15);
  color: var(--darkgreen);
}

/* Dropdown*/
.dropdown-custom {
  min-width: auto;
  height: 25px;
  border: 1px solid var(--black);
  border-radius: 25px;
  background-color: var(--pureWhite);
  color: var(--black);
  padding: 0 12px;
  font-size: 14px;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.dropdown-custom:hover {
  background-color: var(--pureWhite);
  border-color: var(--black);
}

.dropdown-custom:focus,
.dropdown-custom:active,
.dropdown-custom.show {
  background-color: var(--pureWhite);
  border-color: var(--black);
  outline: none;
}

/* Dropdown labels */
.dropdown-label {
  letter-spacing: -0.03em;
  font-size: 14px;
  white-space: nowrap;
}

/* Dropdown menu items */
.dropdown-item {
  font-size: 14px;
  letter-spacing: -0.03em;
}

/* Dropdown Arrow/Triangle */
.dropdown-arrow::after {
  margin-left: 8px;
  border-top: 4px solid var(--black);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

/* To-do */
.todo-card {
  background-color: var(--pureWhite);
  border-radius: 10px;
  border: 1px solid var(--black);
  overflow: hidden;
  max-width: 500px;
}

.date {
  background-color: var(--dirtyWhite);
  color: var(--black);
  position: relative;
  text-align: center;
  min-width: 100px;
  flex-shrink: 1;
  font-size: 20px;
}

.date::after {
  content: "";
  border-right: 1px solid var(--black);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

/* Subtle Hover 3D Effect */
button.btn {
  transition: transform 150ms cubic-bezier(0.25, 0.1, 0.25, 1),
    box-shadow 150ms cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: none;
  transform: translateY(0);
  border: 1px solid var(--black);
}

button.btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 2px 0 #2c2c2c !important;
  border: 1px solid var(--black);
}

/* Removing bootstrap default styling */
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  border-color: var(--black) !important;
  background-color: var(--primaryColor) !important;
}


/* Subtle Hover 3D Effect */
a.btn {
  display: inline-block;
  /* needed for transform */
  transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1),
    box-shadow 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  transform: translateY(0);
  box-shadow: none;
}

a.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 0 #2c2c2c;
}

/* Default: Mobile (xs to sm) */
.create-prof-row {
  width: 100%;
}

/* Medium screens (md: ≥768px) */
@media (min-width: 768px) and (max-width: 1159px) {
  .create-prof-row {
    width: 85%;
    /* Adjust as desired */
  }
}

/* Large screens (lg: ≥1160px and <1599px) */
@media (min-width: 1160px) and (max-width: 1599px) {
  .create-prof-row {
    width: 70%;
  }
}

/* Extra large screens (xl: ≥1600px) */
@media (min-width: 1600px) {
  .create-prof-row {
    width: 50%;
  }
}

.row-padding-top {
  margin-top: 0px !important;
  /* Default for md and up */
}

@media (max-width: 767.98px) {
  .row-padding-top {
    margin-top: 60px !important;
    /* Mobile only */
    margin-bottom: 0px !important;
    /* Mobile only */
  }
}

.dropdown-menu {
  --bs-dropdown-link-active-bg: var(--primaryColor) !important;
  --bs-dropdown-link-active-color: #fff !important;
}

/* Remove Bootstrap blue/white active styles in dropdowns */
.dropdown-menu .dropdown-item:active,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item.show {
  color: var(--black) !important;
  /* or your preferred text color */
}

.material-symbols-rounded{
  color: #2C2C2C!important;
}