@use '../../../../assets/scss/customVariables.scss' as *;

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 30px;
  margin-bottom: 30px;

  .title {
    font-weight: 700;
    font-size: 45px;
    color: #000000;
  }

  .divider {
    width: 100%;
    height: 5px;
    background: $primary-color;
    margin: 20px 0;
  }

  .filters {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;

    .addProperty {
      background: #ffffff;
      border: 1px solid #13A407;
      color: #13A407;
      height: 47px;
      padding: 0 21px;
      border-radius: 7px;

      @media screen and (max-width: 500px) {
        flex: 1;
        padding: 0 15px;
        font-size: 12px;
      }
      @media screen and (max-width: 450px) {
        flex: 1;
        padding: 0 15px;
        font-size: 10px;
      }
    }
    .import {
      background: #ffffff;
      border: 1px solid #E23052;
      color: #E23052;
      height: 47px;
      padding: 0 21px;
      border-radius: 7px;

      @media screen and (max-width: 500px) {
        flex: 1;
        padding: 0 15px;
        font-size: 12px;
      }
    }

    .filter {
      font-weight: 500;
      font-size: 16px;
      color: #000000;
      cursor: pointer;
      border-radius: 7px;
      transition: all 0.3s ease-in-out;
      min-width: 435px;
      margin-left: auto;
    }
  }

  
}