/* ==========================================================================
   Kampa Pompa Hesaplayıcı Stilleri
   ========================================================================== */
#kampa-calculator-wrapper { background-color: #f9f9f9; border: 1px solid #ddd; padding: 25px; border-radius: 5px; max-width: 1200px; margin: 20px auto; box-sizing: border-box; }
#kampa-calculator-wrapper h2 { margin-top: 0; border-bottom: 2px solid #eee; padding-bottom: 10px; }
#kampa-calculator-form .form-row { display: flex; gap: 20px; margin-bottom: 20px; }
#kampa-calculator-form .form-group { flex: 1; display: flex; flex-direction: column; }
#kampa-calculator-form label { font-weight: bold; margin-bottom: 5px; }

/* TÜM GİRİŞ ALANLARI İÇİN ORTAK STİLLER */
#kampa-calculator-form input[type="number"] {
    padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; width: 100%; box-sizing: border-box; background-color: #fff; height: 48px;
}
.kampa-select-wrapper {
    position: relative; width: 100%; height: 48px; border: 1px solid #ccc; border-radius: 4px; background-color: #fff; display: flex; align-items: center;
}
.kampa-select-wrapper::after { content: ''; position: absolute; top: 50%; right: 15px; transform: translateY(-50%); width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 7px solid #555; pointer-events: none; }
#kampa-calculator-form select { -webkit-appearance: none !important; -moz-appearance: none !important; appearance: none !important; padding: 0 30px 0 12px !important; font-size: 16px !important; color: #333 !important; width: 100% !important; height: 100% !important; border: none !important; background-color: transparent !important; cursor: pointer !important; }

#kampa-calculator-form small { font-size: 12px; color: #666; margin-top: 5px; }
#kampa-calculator-form #kampa-submit-button { background-color: #d9534f; color: white; padding: 12px 20px; border: none; border-radius: 4px; font-size: 18px; cursor: pointer; width: 100%; }
#kampa-calculator-form #kampa-submit-button:hover { background-color: #c9302c; }
#kampa-calculator-results { margin-top: 30px; padding-top: 20px; border-top: 2px solid #eee; }
.kampa-info-box { background-color: #e7f3fe; border-left: 4px solid #2271b1; padding: 15px; margin: 20px 0; font-size: 0.9em; border-radius: 3px; }

/* Grid Sonuç Stilleri */
.kampa-results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.kampa-result-card { display: flex; flex-direction: column; border: 1px solid #ddd; border-radius: 4px; background-color: #fff; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.05); transition: transform 0.2s, box-shadow 0.2s; }
.kampa-result-card:hover { transform: translateY(-5px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.kampa-result-card-image-wrapper { position: relative; width: 100%; height: 220px; border-bottom: 1px solid #eee; display: flex; align-items: center; justify-content: center; padding: 15px; box-sizing: border-box; background-color: #fff; }
.kampa-result-card-image-wrapper img { max-width: 100%; max-height: 100%; object-fit: contain; }

.kampa-card-score-badge {
    position: absolute; top: 8px; left: 8px; z-index: 2; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background-color: #2271b1; color: white; box-shadow: 0 0 0 2px #fff, 0 0 0 4px #5cb85c;
    font-size: 20px; font-weight: bold; text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
}

.kampa-card-solar-badge {
    position: absolute; top: 8px; right: 8px; z-index: 2; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: radial-gradient(circle, #ffc107, #f57c00);
    font-size: 28px; line-height: 1; box-shadow: 0 0 0 2px #fff, 0 0 0 4px #ff9800;
}

.kampa-result-card-info { padding: 15px; display: flex; flex-direction: column; flex-grow: 1; }
.kampa-result-card-info h3 { margin: 0 0 auto; font-size: 1em; line-height: 1.4; text-align: center; padding-bottom: 15px; }
.kampa-toggle-details { color: #2271b1; text-decoration: none; cursor: pointer; font-size: 0.9em; text-align: center; margin-bottom: 15px; border-bottom: 1px dotted #2271b1; display: inline-block; align-self: center; }
.kampa-toggle-details:hover { color: #135e96; border-bottom-style: solid; }
.kampa-details-table { margin-bottom: 15px; padding: 10px; background-color: #fafafa; border: 1px solid #eee; border-radius: 3px; }
.kampa-details-table table { width: 100%; border-collapse: collapse; font-size: 0.85em; }
.kampa-details-table th, .kampa-details-table td { text-align: left; padding: 6px; border-bottom: 1px solid #eee; }
.kampa-details-table th { font-weight: bold; }
.kampa-details-table tbody tr:last-child td { border-bottom: none; }
.kampa-card-button { background-color: #5cb85c; color: white; padding: 10px 15px; text-decoration: none; border-radius: 4px; display: block; text-align: center; margin-top: auto; }


/* Sonuç başlıklarını ve altındaki paragrafı ortalar */
#kampa-calculator-results > h3,
#kampa-calculator-results > p {
    text-align: center;
}

/* MOBİL UYUMLULUK */
@media (max-width: 1024px) { .kampa-results-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { #kampa-calculator-wrapper { padding: 15px; max-width: 100%; } #kampa-calculator-form .form-row { flex-direction: column; gap: 15px; } .kampa-results-grid { grid-template-columns: 1fr; } }