    .dic1{
      display: none;
      margin:auto;
      width: auto;
      color: black;
      height:auto;
      transition: 3s ease-in;
    }
    .main_cat {
  	padding: 1px 8px;
  	border: none;
  	margin:23px;
  	background: rgb(14 75 63);
  	font-size: 14px;
    font-weight: bold;
  	border-radius:2px;
  	color: white;
  	width: auto;
   
    text-align: center;

    }
    .sub_cat{
      font-size: 13px; 
      margin:0px 5px 2px 5px;
      padding: 2px;
      color:black;
      text-align: center;
      text-decoration: none;
    }
    .sub_cat:hover{
      background-color: rgb(119, 133, 119);
      border-radius: 5px;
    }
        .sidebar {
            position: fixed;
            padding-top: 7rem;
            top:0;
            left: 0;
            width: 250px;
            height: 100%;
            background-color: rgb(255, 255, 255);
            transition: transform 0.3s ease;
            z-index: 999;
        }
        .sidebar.hidden {
            transform: translateX(-100%);
        }
        .sidebar h6 {
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
        }
        .main_cat {
            margin-left: 10px;
            color: white;
            cursor: pointer;
        }
        .sub_cat {
            margin-left: 30px;
            color: rgb(45, 60, 45);
            font-size: 14px;
        }
        .content {
            margin-left: 250px;
            transition: margin-left 0.3s ease;
        }
        .content.full {
            margin-left: 0;
        }
        .toggle-btn {
            position: fixed;
            top: auto;
            left: auto;
            background-color: rgb(22, 80, 75);
            color: white;
            border: none;
            border-radius: 5px;
            z-index: 1000;
            padding: 3px 10px;
            cursor: pointer;
            
        }
