:root{
  --blue-color: #1B325C;
  --yellow-color: #ded2bc;
}

body{
  color: #000;
  background: #fff;
  margin: 0;
  font-size: 14px;
}

table tbody td {
    padding-top: 8px;
    padding-bottom: 8px;
}

.bg-blue{
  background: var(--blue-color);
}

.bg-yellow{
  background: var(--yellow-color);
}

a{
  text-decoration: none !important;
}

.fs-12{
  font-size: 12px;
}

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

.fs-15{
  font-size: 15px;
}

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

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

.fs-21{
  font-size: 21px;
}

.fw-400{
  font-weight: 400;
}

.fw-500{
  font-weight: 500;
}

.fw-600{
  font-weight: 600;
}

.text-blue,
.text-blue:hover{
  color: var(--blue-color);
}

.form-control{
  border-radius: 8px;
  transition: border-color 0.2s;
  font-size: 14px;
}

.form-control:focus{
  border-color: var(--blue-color);
}

.input-group .btn{
  border: 1px solid #ced4da;
  border-radius: 0 8px 8px 0;
  border-left: 0;
  padding: 0 12px;
  background-color: #f8f9fa;
}

.input-group .btn:focus,
.input-group .btn:hover,
.input-group .btn:active{
  outline: none;
  border: 1px solid #ced4da;
  border-left: 0;
  box-shadow: none;
}

.btnText{
  color: #fff;
}

.spinner-icon{
  color: #fff;
}

.remix-spin {
  display: inline-block;
  animation: remix-spin 1s linear infinite;
  font-size: 14px;
  vertical-align: middle;
}

@keyframes remix-spin {
  100% { transform: rotate(360deg); }
}

.custom-button{
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  border:none;
  background: var(--blue-color);
  color: #fff;
}

.custom-button:hover{
  box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.10);
}

.auth-bg{
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(
      to top,
      rgba(64, 57, 250, 0.85) 0%,
      rgba(64, 57, 250, 0) 100%
    ), url('/default-assets/img/auth/auth-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#panelRoot { 
  display: flex;
  height: 100vh;
  position: relative;
  background: #fdfdfd;
}

#sidebarToggle{
  padding: 0.25rem 0.5rem;
  font-size: 18px;
  line-height: 1;
}

#sidebarToggle:focus{
  box-shadow: none;
  outline: none;
  border-color: transparent;
}

#sidebarToggle.close-btn {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 2000;
}

#sidebar {
  width: 250px;
  background: #fff;
  transition: width .25s ease, left .25s ease;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
}

.sidebar-header {
  border-bottom: 1px solid #d0d0d0;
  text-align: center;
}

#sidebar .nav-link {
  color: var(--blue-color);
  padding:  20px 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
  text-align: left;
  outline: none;
  height: 2rem;
  width: 100%;
  justify-content: flex-start;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  margin-top: 0.75rem;
}

#sidebar .nav-link:hover {
  background-color: var(--yellow-color);
}

#sidebar .nav-link.active,
#sidebar .nav-link.active:hover {
  background: var(--yellow-color);
  font-weight: 600;
}

#sidebar.collapsed { 
  width: 80px; 
}

#sidebar.collapsed .menu-text { 
  display: none; 
}

.sidebar-footer {
  border-top: 1px solid #d0d0d0;
  display: flex;
  align-items: center;
  padding: 12px;
  margin-top: auto;
  background: #fafafa;
}

.sidebar-footer img {
  width: 32px; 
  height: 32px; 
  object-fit:cover;
  border: 2px solid #e0e0e0;
}

.avatar-circle {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  background-color: var(--yellow-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.dashboard-kurs-banner{
  width: 100%;
  background: #203159;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 1rem;
  background-image: url('/panel-assets/img/bg-star.png');
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
}

.dashboard-kurs-banner-btn{
  background: #202020;
  color: #fff;
  padding: 8px 16px;
  border-radius: 16px;
}

.dashboard-kurs-banner-btn:hover{
  color: #fff;
}

.slider-container {
  overflow: hidden;
  position: relative;
  padding-bottom: 10px;
}

.slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.3s ease;
}

.slider-track > .custom-card {
  flex: 0 0 auto;
  width: calc((100% - 32px) / 3);
}

.custom-card{
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.egitim-banner img{
  border-radius: 12px;
  width: 100%;
  height: 125px;
  object-fit: cover;
}

.egitim-card-tur{
  display: inline-block;
  color: #fff;
  padding: 2px 8px;
  border-radius: 8px;
  margin-right: 8px;
}

.egitim-card-tur span{
  font-size: 12px;
  color: #fff;
}

.egitim-card-process {
  --progress: 0%;
  width: 100%;
  height: 5px;
  background: #D9D9D9;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.egitim-card-process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--progress);
  background: var(--blue-color);
  border-radius: 8px;
  transition: width 0.3s ease;
}

.btn-circle{
  border-radius: 50%;
  color: #9E9E9E;
  border: 1px solid #9E9E9E;
}

.btn-circle:hover{
  color: #9E9E9E;
  border: 1px solid #9E9E9E;
  background: none;
}

.avatar-circle-lg {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  background-color: var(--yellow-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
}

.egitim-seviye{
  position: absolute;
  left: 10px;
  bottom: 10px;
  background-color: #fff;
  color: #000;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 6px;
}

.egitim-hafta{
  width: 32px;
  height: 32px;
  background: var(--yellow-color);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-yarin-container {
  overflow: hidden;
  position: relative;
}

.slider-yarin-track {
  display: flex;
  transition: transform 0.3s ease;
}

.slider-yarin-track > .yarin-takvim-card {
  flex: 0 0 100%;
}

.yarin-takvim-card{
  display: flex;
  flex-direction: column;
}

.nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  color: #818183;
}

.nav-tabs .nav-link.active {
  border-color: var(--blue-color);
  font-weight: 600;
  color: var(--blue-color)
}

.fc-scrollgrid-sync-inner a{
  color: var(--blue-color);
}

.fc-button-mavi{
  background: var(--blue-color) !important;
  border:none !important;
  text-align: center;
}

.fc-toolbar-title{
  text-align: center;
  font-size: 16px;
}

#dersTakvim {
  width: 100%;
  height: calc(100vh - 120px);
  overflow-y: auto;
}