.btn {
  border: none;
  border-radius: 0;
  padding: 6px;
  font-size: 1rem;
  font-weight: 600;
}

.btn-primary {
  background-color: var(--renk1);
  color: var(--renk6);
  min-width: 175px;
  position: relative;
}

.btn-primary:hover {
  background-color: var(--renk1);
}

.btn-primary:active {
  background-color: var(--renk1);
}

.btn-secondary {
  background-color: var(--renk6);
  color: var(--renk2);
  position: relative;
  font-weight: 300;
  padding: 4px;
  border: 1px solid var(--renk2);
}

.btn-secondary:hover {
  background-color: var(--renk6);
  color: var(--secondary);
}

.btn-secondary:active {
  background-color: var(--renk6);
}

.active > .page-link, .page-link.active {
    background-color: var(--renk1);
    color: var(--renk6);
    border-color: var(--renk1);
    border-radius: 0px !important;
}

.default_button {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 40px;
    background-color: #94c11f;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .default_button:hover {
        background: #878787 !important;
    }

    .default_button a {
        display: block;
        color: #FFFFFF;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        line-height: 40px;
        width: 100%;
    }


.cancel_button {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 40px;
    background-color: orange;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .cancel_button:hover {
        background: #878787 !important;
    }

    .cancel_button a {
        display: block;
        color: #FFFFFF;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        line-height: 40px;
        width: 100%;
    }

.small_button {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 30px;
    background-color: #94c11f;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .small_button:hover {
        background: #878787 !important;
    }

    .small_button a {
        display: block;
        color: #FFFFFF;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        line-height: 40px;
        width: 100%;
    }