ul {
    list-style-type: none;
}

.calculation-header h1 {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    letter-spacing: 0.03em;
}

#calculateBtn, #resetBtn {
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    color: #fff; /* Buton yazı rengi */
    border: none; /* Kenarlık kaldırıldı */
    border-radius: 10px; /* Yumuşak köşeler */
    padding: 14px 28px; /* Dengeli iç boşluk */
    margin-right: 12px; /* Butonlar arasında boşluk */
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0, 119, 204, 0.25); /* Daha belirgin gölge */
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    user-select: none;
}

#calculateBtn {
    background: linear-gradient(135deg, #6c8cc8, #39537f);
    box-shadow: 0 5px 15px rgba(57, 83, 127, 0.4);
}

#calculateBtn:hover {
    background: linear-gradient(135deg, #39537f, #6c8cc8);
    box-shadow: 0 8px 20px rgba(57, 83, 127, 0.6);
    transform: translateY(-3px);
}

#resetBtn {
    background: linear-gradient(135deg, #c86c6c, #7f3939);
    box-shadow: 0 5px 15px rgba(127, 57, 57, 0.4);
}

#resetBtn:hover {
    background: linear-gradient(135deg, #7f3939, #c86c6c);
    box-shadow: 0 8px 20px rgba(127, 57, 57, 0.6);
    transform: translateY(-3px);
}

.calculation-form {
    border: none;
    border-radius: 15px;
    padding: 35px 30px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #f0f4ff, #ffffff);
    box-shadow: 0 15px 30px rgba(0, 119, 204, 0.12);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.calculation-form:hover {
    box-shadow: 0 25px 40px rgba(0, 119, 204, 0.2);
    transform: translateY(-3px);
}

.calculationResult-form {
    border: none;
    border-radius: 15px;
    padding: 35px 30px;
    margin-bottom: 40px;
    background-color: #e8f5fe;
    box-shadow: 0 15px 30px rgba(0, 119, 204, 0.12);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.resultContent {
    background: linear-gradient(135deg, #6c8cc8, #39537f);
    padding: 30px 35px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(42, 82, 152, 0.6);
    color: #f0f4f8;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    max-width: 100%;
}

.resultContent:hover {
    box-shadow: 0 12px 30px rgba(42, 82, 152, 0.9);
    transform: translateY(-5px);
}

.resultContent h2, 
.resultContent h3 {
    color: #a8d0ff;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-shadow: 0 0 5px rgba(168, 208, 255, 0.7);
}

.resultContent p {
    font-size: 16.5px;
    line-height: 1.65;
    color: #d0d9f7;
    margin-bottom: 20px;
    text-shadow: 0 0 3px rgba(168, 208, 255, 0.5);
}

.calculation-form input[type="number"]::-webkit-outer-spin-button,
.calculation-form input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.calculation-form input[type="number"],
.calculation-form input[type="date"] {
    font-size: 17px; /* Daha okunaklı yazı */
    padding: 14px 18px; /* Daha dengeli iç boşluk */
    border-radius: 10px; /* Daha yumuşak köşeler */
    border: 1.8px solid #ccd7e7; /* Hafif mavi ton */
    width: 100%; /* Tam genişlik */
    max-width: 480px; /* Genişlik sınırı */
    margin-bottom: 25px; /* Inputlar arasında boşluk */
    background-color: #fefefe; /* Temiz ve açık arka plan */
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05); /* Hafif iç gölge */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.calculation-form input[type="number"]:focus,
.calculation-form input[type="date"]:focus {
    border-color: #0077cc; /* Odaklanınca mavi kenar */
    box-shadow: 0 0 10px rgba(0, 119, 204, 0.3);
    outline: none;
}

.addWebSiteBtn {
    padding: 8px 16px;
    text-decoration: none;
    color: #fff;
    background-color: #3b99db;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 6px 12px rgba(59, 153, 219, 0.35);
    display: inline-block;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.addWebSiteBtn:hover {
    background-color: #2a7bb8;
    box-shadow: 0 8px 18px rgba(42, 123, 184, 0.45);
}

/* içerikler */
.content-section {
    margin-bottom: 40px;
}

.content-section .content-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #9d9d9d;
}

.content-section .content-item p {
    margin-left: 10px;
    font-size: 16px;
    line-height: 1.6;
}

/* bloglar */
.blogs-list .blog-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
}

.blogs-list .blog-item img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
}

.blogs-list .blog-item h3 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.blogs-list .blog-item p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.related-calculations {
    background-color: #ffffff;
    padding: 15px 15px; /* Orijinale yakın */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    height: max-content;
    max-width: 100%; /* Taşmayı önlemek için */
    box-sizing: border-box; /* padding dahil toplam genişlik kontrolü */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.related-calculations:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: none; /* Mobilde hover hareketini kaldırdım */
}

.related-calculations h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.related-calculations ul {
    list-style: none;
    padding: 0 !important;
    margin: 0;
}

.related-calculations a {
    text-decoration: none;
    color: #0077cc;
    font-weight: 600;
    transition: color 0.3s ease;
    display: block;
    padding: 10px 12px; /* Daha kompakt padding */
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 119, 204, 0.12);
    margin-bottom: 12px;
    background-color: #f5faff;
    user-select: none;
    white-space: normal; /* Kelimeler taşmasın */
    word-wrap: break-word; /* Uzun kelimeleri sar */
}

.related-calculations a:hover {
    color: #005fa3;
    background-color: #d9e7ff;
    box-shadow: 0 4px 14px rgba(0, 95, 163, 0.25);
    transform: none; /* Mobilde hover hareketini kaldırdım */
}

.related-calculations ul li {
    margin-bottom: 0; /* Linklerde zaten margin var */
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.related-calculations ul li:hover {
    color: #005fa3;
}
