@media (min-width: 1200px) {
    .sidebar__logo {
      
     left: 0px !important;

      }
  }

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

.correction-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Genişlik eski haline (18px) döndü, yükseklik bir tık artırıldı (12px) */
    padding: 12px 18px; 
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.3px; /* Harfler toplu durur */
    color: #000;
    
    /* Senin özel rengin */
    background: #edc62e !important;
    
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 10px rgba(237, 198, 46, 0.4);
}

/* CSS İkon (Cüzdan) */
.correction-button::before {
    content: "";
    width: 13px;
    height: 10px;
    margin-right: 8px;
    border: 2px solid #000;
    border-radius: 2px;
    background: linear-gradient(#000, #000) no-repeat right 1.5px center / 3px 2px;
}

/* Üstünden Geçen Kayan Işık Efekti */
.correction-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(255, 255, 255, 0.7), 
        transparent
    );
    transform: skewX(-20deg);
    animation: light-swipe 2.2s infinite;
}

@keyframes light-swipe {
    0% { left: -150%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

/* Hover ve Tıklama */
.correction-button:hover {
    background: #fbd642 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(237, 198, 46, 0.6);
}

.correction-button:active {
    transform: translateY(1px);
}

.category-tile.active {
    background: #000000 !important;
      border-bottom: 3px solid var(--tf-active) !important;
}

.category-tile {
    border: 1px solid #d49920 !important;
   background: #000000 !important;
}
