@tailwind base;
@tailwind components;
@tailwind utilities;

@font-face {
  font-family: Axiforma;
  src: url(../fonts/axiforma/Axiforma-Regular.eot);
}

@font-face {
  font-family: Mukta;
  src: url(../fonts/mukta/Mukta-Regular.ttf);
}

.border-1px {
  border: 1px solid #000;
}
@layer utilities {
  /* width */
  ::-webkit-scrollbar {
    width: 5px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #2e5fc0;
  }
  .hide-scrollbar::-webkit-scrollbar {
    display: none;
  }
}

.admin-breadcrumb {
  font-size: 24px;
  color: #111827;
  text-transform: capitalize;
}
.form-label {
  color: #737272;
  margin-top: 600px;
  font-size: 14px;
  text-transform: capitalize;
}

.admin-form-input {
  width: 100%;
  resize: vertical;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 10px 0 0 0;
}

.admin-form-input:focus {
  border-color: #dddddd;
  box-shadow: 0 0 0 2px rgba(5, 145, 255, 0.1);
  border-inline-end-width: 1px;
  outline: 0;
}

.admin-search-input {
  width: 100%;
  color: #374151; /* Tailwind's text-gray-700 */
  border: none;
  border-radius: 0.5rem;
  resize: vertical;
  transition: 0.5s;
  outline: none;
}

.admin-search-input::placeholder {
  color: #6b7280; /* Tailwind's placeholder-gray-500 */
}

.admin-search-input:focus {
  border-color: #2eb8ea;
  box-shadow: none; /* Removes blue glow */
  outline: none; /* Ensures no outline */
}

.admin-error-msg {
  color: #e32626;
  font-size: 13px;
  margin-top: 5px;
}

.admin-button {
  background-color: #2eb8ea;
  color: white;
  text-align: center;
  border-radius: 5px;
  padding: 5px 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.admin-button:hover {
  background-color: #078ebf;
}

.form-button {
  color: white;
  background-color: #2eb8ea;
  padding: 10px 20px;
  border-radius: 0.5rem;
  text-shadow: 1px 1px gray;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-button:hover {
  background-color: #078ebf;
}

.form-button-cancel {
  background-color: gray;
}

.form-button-cancel:hover {
  background-color: rgb(100, 98, 98);
}
th {
  text-transform: uppercase;
  text-align: center;
}
td,
tr {
  text-transform: capitalize;
  text-align: center;
}

.tr-hover:hover {
  background-color: #e3e3e3;
  color: #000;
}

.about_us_image {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.our-team-grid .img-div {
  position: relative;
  height: 200px;
}
.our-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cancel-icon {
  text-align: center;
  width: 30px;
  height: 30px;
  font-size: 25px;
  position: absolute;
  top: 0;
  right: 0;
  background-image: linear-gradient(25deg, #fff, #000);
}

.slider-ul {
  align-items: center;
}

.bg-e3 {
  background-color: #efefef;
  padding: 20px 0px;
}

.align-items-center {
  align-items: center;
}

.container {
  width: 80%;
  margin: auto;
}

.page-head {
  padding: 80px 0;
}

.client-head {
  background-image: url("http://localhost/galaxy-education-admin/frontend-assets/images/client.jpg");
}

.formdiv {
  margin-left: 120px;
  padding: 10px;
  margin-top: 60px;
  width: 40%;
}
.logodiv {
  position: fixed;
  top: 5%;
  left: 50%;
  height: 10%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
