.btn.btn-primary {
    color: #ebe7d4;
    background-color:black;
    --bs-btn-border-color: unset;
    --bs-btn-border-radius: unset;
    --bs-btn-active-bg: rgb(255, 255, 255);
    --bs-btn-active-color: #ebe7d4;
    /* Другие стили */
  }

.col {
    padding-top: 24px;
}

.card:hover {
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2); /* Тень при наведении */
  transform: scale(1.03); /* Увеличение при наведении */
}

.card {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Начальная тень */
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out; /* Плавные переходы */
}




.card {
    --bs-card-border-color: unset;
    height: 100%; /* Задаем фиксированную высоту для элемента .card */
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 10px;
  }

.card img {
  border-radius: 10px;
}

.card-body {
  padding: unset;
  padding-top: 5px;
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-footer:last-child {
  border-radius: unset;
}

#container2 {
  margin-bottom: 30px;
}

img {

  background-color: #ebe7d4;
}


.my-5 {
  padding: 0px 12px;
  margin-bottom: 0!important;
}

.card-text {
  padding: 20px;
  padding-top: 0px;
}

.card-title {
  padding: 20px;
  padding-bottom: 0px;
}

a {
  text-decoration: none;
}

.d-flex {
  display: unset !important;
}

.card-add .card-body {
    min-height: 400px; /* или сколько тебе нужно */
    border-radius: 10px;
    background-color: rgba(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    font-size: 72px;
    font-weight: bold;
    color: #333;
    border: 2px dashed #999;
    cursor: pointer;
    background-color: #ebe7d4;
}

.btn-round-left {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 0;
}

.btn-round-right {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 8px;
}