.cont-right-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.title-status-cont{
    display: flex;
    gap: 20px;
}

.right-title{
    font-size: 28px;
}

.right-content{
    background-color: #231F20;
    border-radius: 8px;
}

.right-footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.right-content-item{
    width: 495px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
    border-left: 8px solid transparent;
}

.active-item {
    border-left: 8px solid #EE1D23;
    background-color: #FFFFFF0D;
    border-radius: 8px;
}

.contact-us{
    width: 132px;
    height: 48px;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #F9F9FB66
  }
  
  td, th {
    border-top: 1px solid #F9F9FB66;
    border-bottom: 1px solid #F9F9FB66;
    text-align: left;
    padding: 8px;
    text-align: center;
  }

  th {
    background-color: #231F20;
  }

  .ok-to-buy {
    background: #0A9E4F;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    height: 25px;
    padding: 5px;
  }

  .ok-but-contact {
    background: #B9C909;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    height: 25px;
    padding: 5px;
  }

  .dont-buy {
    background: #EE1D23;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    height: 25px;
    padding: 5px;
  }
  
  .container-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  input { 
    width: 98.7%;
    height: 32px;
    border-radius: 8px;
    border: none;
    padding-left: 10px;
  }
  
  .pagination { 
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .page {
    width: 30px;
    height: 30px;
    align-items: center;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }

  .current{
    background: #EE1D23;
    border-radius: 8px;
  }
  
  @media screen and (max-width: 1024px){
    .title-status-cont{
        flex-direction: column;
        margin: auto;
    }

    .right-content{
        width: 100%;
    }
    .right-content-item{
        width: unset;
    }
  }

  @media screen and (max-width: 500px){
    .title-status-cont{
        align-items: center;
    }
    .container-right{
        width: 90%;
    }
    .container-left{
        width: 90%;
    }
    .ok-but-contact{
        height: auto;
    }
  }

  @media screen and (max-width: 340px){
    .right-title{
        font-size: 18px;
    }

  }