﻿<style >

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}







.header {
    background: linear-gradient(135deg, #ff6600, #e55100);
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}







.main-content {
    display: flex;
    min-height: 600px;
}







.left-panel {
    flex: 2;
    padding: 30px;
    background-color: white;
}







.right-panel {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}







.form-group {
    margin-bottom: 20px;
}







    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
        color: #555;
    }







select, input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background-color: white;
    transition: border-color 0.3s ease;
}







    select:focus, input:focus {
        outline: none;
        border-color: #ff6600;
        box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
    }







select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}







.price-display {
    background-color: #e8e8e8;
    padding: 15px;
    border-radius: 6px;
    text-align: right;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}







#engelliBox {
    display: none;
    background-color: #f0f8ff;
    border: 2px solid #4a90e2;
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
}







    #engelliBox.show {
        display: block;
        animation: slideDown 0.3s ease;
    }







@keyframes slideDown {



    from {
        opacity: 0;
        transform: translateY(-10px);
    }



    to {
        opacity: 1;
        transform: translateY(0);
    }
}







.engelli-form {
    display: flex;
    gap: 15px;
    align-items: end;
}







.engelli-input-group {
    flex: 1;
}







    .engelli-input-group label {
        font-size: 14px;
        color: #4a90e2;
        font-weight: 600;
    }







    .engelli-input-group input {
        border-color: #4a90e2;
    }







.calculate-btn {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}







    .calculate-btn:hover {
        background: linear-gradient(135deg, #1e40af, #2563eb);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(30, 58, 138, 0.4);
    }







    .calculate-btn:active {
        transform: translateY(0);
    }







.main-price-display {
    background-color: #e8e8e8;
    padding: 20px;
    border-radius: 6px;
    text-align: right;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}







.detailed-results {
    margin-top: 20px;
}







.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 8px;
    background-color: #f8f9fa;
}







.result-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}







.result-value {
    background-color: #e8e8e8;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}







.logo-section {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-top: 1px solid #e0e0e0;
}







.logo {
    max-width: 200px;
    height: auto;
}







.note {
    background-color: #ffe6e6;
    border-left: 4px solid #ff4444;
    padding: 12px;
    margin: 15px 0;
    border-radius: 4px;
    font-style: italic;
    color: #d63031;
}







.dropdown-arrow {
    pointer-events: none;
}







@media (max-width: 768px) {



    .main-content {
        flex-direction: column;
    }







    .container {
        margin: 10px;
        max-width: 100%;
    }







    .left-panel, .right-panel {
        padding: 15px;
    }







    .header {
        font-size: 20px;
        padding: 15px;
    }







    .main-price-display {
        font-size: 20px;
        padding: 15px;
    }







    .calculate-btn {
        padding: 12px 30px;
        font-size: 14px;
    }







    .result-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }







    .result-value {
        align-self: flex-end;
    }







    .engelli-form {
        flex-direction: column;
        gap: 10px;
    }







    .form-group {
        margin-bottom: 15px;
    }







    select, input {
        padding: 10px;
        font-size: 16px; /* iOS'ta zoom'u önlemek için */
    }



    /* Mobilde sol paneldeki banner'ı gizle */

    .left-panel .tercih-banner {
        display: none !important;
    }



    /* Mobilde sağ paneldeki banner'ı göster */

    .right-panel .tercih-banner {
        display: block !important;
        margin-top: 20px;
    }
}



/* Desktop'ta sağ paneldeki banner'ı gizle */

@media (min-width: 769px) {

    .right-panel .tercih-banner {
        display: none !important;
    }
}







@media (max-width: 480px) {



    .container {
        margin: 5px;
    }







    .left-panel, .right-panel {
        padding: 10px;
    }







    .header {
        font-size: 18px;
        padding: 12px;
    }







    .main-price-display {
        font-size: 18px;
        padding: 12px;
    }







    .calculate-btn {
        padding: 10px 25px;
        font-size: 13px;
    }







    .result-label {
        font-size: 12px;
    }







    .result-value {
        font-size: 14px;
        padding: 6px 10px;
    }
}



</style >
