
/* Form kart tasarımı */
#asi-vki-panel {
    width: 100%; max-width: 100%;
    margin: 0 auto 40px;
    background: #ffffff;
    padding: 16px 24px 20px 24px;
    border-radius: 15px;
    border: 2px solid #ddd;
    animation: borderPulse 2s infinite;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}
    width: 100%; max-width: 100%;
    margin: 40px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ddd;
    animation: borderPulse 2s infinite;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

@keyframes borderPulse {
    0% { border-color: #ff4444; }
    50% { border-color: #ff8888; }
    100% { border-color: #ff4444; }
}

/* Form alanları */
#asi-vki-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 14px;
    margin: 0 auto 40px;
    padding: 20px;
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    max-width: 800px;
}

#asi-vki-form input, #asi-vki-form select {
    padding: 12px 14px;
    font-size: 16px;
    width: 180px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #fefefe;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
    transition: border-color 0.3s, box-shadow 0.3s;
}

#asi-vki-form input:focus, #asi-vki-form select:focus {
    border-color: #0073aa;
    box-shadow: 0 0 5px rgba(0,115,170,0.5);
}
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

#asi-vki-form input, #asi-vki-form select {
    padding: 12px;
    font-size: 16px;
    width: 160px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* Hesapla butonu */
#asi-vki-form button {
    padding: 12px 24px;
    background: #e60000;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

#asi-vki-form button:hover {
    background: #cc0000;
}

/* Sonuç alanı modern kart şeklinde */
#vki-result {
    display: none;
    margin: 30px auto 10px;
    background: #f1f1f1;
    padding: 20px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: bold;
    width: 60%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Grafik */
#vki-chart {
    margin: 30px auto 10px;
    display: none;
    width: 100%;
}

/* Tavsiye butonu */
#show-popup {
    display: none;
    margin: 20px auto;
    background-color: #0073aa;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: block;
    text-align: center;
}

/* Popup tasarımı */
#vki-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 400px;
    height: 300px;
    background: #ffffff;
    border: 3px solid #ff4444;
    border-radius: 10px;
    padding: 20px;
    z-index: 999;
    animation: borderPulse 2s infinite;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

#popup-close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 18px;
    cursor: pointer;
}

#popup-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

#asi-vki-header {
    text-align: left;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    padding-left: 5px;
}
