    p {
        margin: 0px !important;
    }
    * {
        border: 0px !important;
    }
    .card:hover {
        transform: scale(1.01);
        transition: all 0.3s ease;
    }
    a {
        text-decoration: none;
    }
    .sidebar {
    height: 100vh;
    width: 70px;
    position: fixed;
    left: 0;
    top: 0;
    background: rgb(6, 2, 111);
    color: #fff;
    padding-top: 1rem;
    z-index: 1000;
    }
    .sidebar a {
      color: #fff;
      display: block;
      padding: 15px;
      text-decoration: none;
      text-align: center;
    }
    .sidebar a:hover,
    .sidebar a.active {
      background: rgb(244, 153, 6);
      border-radius: 8px;
    }
    .content {
      margin-left: 70px;
      padding: 20px;
    }
    
    .transition-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .transition-card:hover {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }