.lgs-hesaplama-konteyner {
    font-family: 'Roboto', sans-serif;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.lgs-hesaplama-konteyner h2 {
    text-align: center;
    color: #3f51b5;
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 1.8em;
}

.lgs-form-kutu {
    margin-bottom: 30px;
}

.lgs-input-gruplari {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.lgs-ders-input {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #e0e0e0;
}

.lgs-ders-input h4 {
    color: #424242;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2em;
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 10px;
}

.lgs-input-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.lgs-input-row > div {
    flex: 1;
}

.lgs-input-row label {
    display: block;
    margin-bottom: 5px;
    color: #616161;
    font-weight: 500;
    font-size: 0.95em;
}

.lgs-input-row input[type="number"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #bdbdbd;
    border-radius: 6px;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lgs-input-row input[type="number"]:focus {
    border-color: #3f51b5;
    box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.2);
    outline: none;
}

.lgs-button-container {
    text-align: center;
    margin-top: 30px;
}

.lgs-button {
    background-color: #3f51b5;
    color: #ffffff;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.lgs-button:hover {
    background-color: #303f9f;
    transform: translateY(-2px);
}

.lgs-sonuc-kutusu {
    background-color: #e8eaf6;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #c5cae9;
    margin-top: 25px;
}

.lgs-sonuc-kutusu h3 {
    color: #283593;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5em;
    text-align: center;
}

.lgs-sonuc-puan {
    text-align: center;
    font-size: 1.6em;
    font-weight: bold;
    color: #d32f2f;
    margin-bottom: 20px;
}

.lgs-sonuc-puan strong {
    color: #c62828;
}

.lgs-detaylar h4 {
    color: #3f51b5;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.lgs-detaylar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lgs-detaylar ul li {
    background-color: #f0f4c3;
    margin-bottom: 8px;
    padding: 10px 15px;
    border-radius: 4px;
    border: 1px solid #e6ee9c;
    font-size: 0.95em;
    color: #333;
}

.lgs-detaylar ul li strong {
    color: #558b2f;
}

.lgs-sonuc-detay {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #c5cae9;
}

.lgs-sonuc-detay p {
    font-size: 1.2em;
    font-weight: 500;
    color: #1a237e;
}

.lgs-uyari {
    background-color: #fffde7;
    border-left: 5px solid #ffeb3b;
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
}

.lgs-uyari h4 {
    color: #fbc02d;
    margin-top: 0;
    margin-bottom: 10px;
}

.lgs-uyari p {
    font-size: 0.9em;
    color: #424242;
    line-height: 1.5;
}

.lgs-uyari-mesaji {
    background-color: #f3e5f5;
    border-left: 5px solid #ab47bc;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.lgs-uyari-mesaji p {
    font-size: 0.9em;
    color: #4a148c;
    line-height: 1.5;
}

/* Responsive Dzenlemeler */
@media (max-width: 600px) {
    .lgs-hesaplama-konteyner {
        margin: 10px;
        padding: 15px;
    }

    .lgs-input-gruplari {
        grid-template-columns: 1fr;
    }

    .lgs-input-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .lgs-input-row > div {
        width: 100%;
    }

    .lgs-button {
        width: 100%;
        padding: 15px 0;
    }
}