/* Yalnızca BMI hesaplayıcı bölümü için özel CSS */

/* BMI form stili */
.bmi-calculator-wrapper {
    max-width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #fff;
    padding: 30px;
}

/* BMI görsel alanı */
.bmi-image-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.bmi-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Form alanı stili */
.form-label {
    font-weight: 600;
    color: #333;
}

.form-control {
    border-radius: 30px;
    padding: 12px 20px;
    box-shadow: none;
    border: 1px solid #ddd;
}

.form-btn .th-btn {
    background-color: #FFD700;
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.form-btn .th-btn:hover {
    background-color: #FFA500;
    color: #fff;
}

.result {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Responsive düzen */
@media (max-width: 768px) {
    .bmi-image-wrapper, .bmi-calculator-wrapper {
        margin-bottom: 20px;
    }

    .bmi-calculator-wrapper {
        padding: 20px;
    }
}



.bmi-button {
    text-align: center; /* Butonu ortala */
    margin-top: 5px; /* Üstten boşluk */
  }
  
  .btn-custom {
   /* Daha koyu mavi pastel bir geçiş için */
background: linear-gradient(45deg, #2C3E50, #4A6FA5);
 /* Altın ve turuncu degrade arka plan */
    color: white; /* Yazı rengi beyaz */
    padding: 5px 10px; /* Buton iç boşluğu */
    border-radius: 30px; /* Yuvarlak hatlı buton */
    font-weight: bold; /* Kalın yazı */
    font-size: 16px; /* Font boyutu */
    text-decoration: none; /* Alt çizgi kaldır */
    display: inline-flex; /* İkon ve yazıyı yan yana koy */
    align-items: center; /* İkon ve yazıyı dikeyde ortala */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2); /* Hafif gölge */
    transition: all 0.3s ease; /* Hover geçişi için yumuşak animasyon */
    gap: 10px; /* İkon ve yazı arasındaki boşluk */
  }
  
  .btn-custom:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700); /* Hover'da renkleri ters çevir */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3); /* Hover'da gölgeyi artır */
    transform: translateY(-3px); /* Hover'da hafif yukarı kaldır */
  }
  
  .btn-custom i {
    font-size: 20px; /* İkon boyutu */
  }