.p-relative {
  position: relative;
}
.p-absolute {
  position: absolute;
}
.p-sticky{
    position: sticky;
    top: 0;
}
.header h1{
    margin: 0;
}
.d-flex{
    display: flex;
}
.a-center{
    align-items: center;
}
.header {
    padding-top:20px;
    background-color: white;
    z-index: 10;
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
}
.collapse-btn {
  left: 20px;
  transform: translateY(-50%);
  top:50%;
}
.left-content {

    position: relative; /* Add a transition for max-width property with a duration of 0.3 seconds and ease timing function */
  }
input::placeholder{
    font-size: 14px;
}
  
textarea::placeholder{
    font-size: 14px;
    padding:5px 5px;
}


  .left-content.collapse {
    animation: collapseAnimation 0.3s ease; /* Apply the keyframe animation with a duration of 0.3 seconds and ease timing function */
  }
  @keyframes collapseAnimation {
    from {
     left:10px;/* Adjust the initial width as needed */
    }

    to {
      left:100px;
    }
  }

.d-none{
    display: none;
}