.sidebar-inner {
    position: relative;
  }
  
  .sidebar-logout-fixed {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    text-align: center;
  }
  
  .logout-btn-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    background-color: #dc3545;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
  }
  
  .logout-btn-custom i {
    margin-right: 6px;
    font-size: 14px;
  }
  
  .logout-btn-custom:hover {
    background-color: #c82333;
    transform: translateX(-50%) scale(1.03);
  }
  