.form-container {
    background-color: white;
    padding: 20px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

h2 {
    text-align: center;
    color: #333;
}

.language-input {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

#languageList, #skillList {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ffb71b;
    border-radius: 6px;
}

    #languageList h3 {
        color: #ffb71b;
    }
    #skillList h3 {
        color: #ffb71b;
    }

    .language-input input,
    .language-input select {
        padding: 10px;
        border-radius: 6px;
        border: 1px solid #ccc;
        flex: 1;
        font-size: 14px;
    }

.language-input select {
    max-width: 150px;
}

.add-btn,
.submit-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-btn {
    background-color: #ffb71b;
    color: white;
    margin-bottom: 20px;
}

.skill-item, .language-item{
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 19px;
    font-weight:bold;
}

.del-btn {
    background-color: red;
    min-width: 55px;
    border-radius: 6px;
    padding: 3px;
    color: white;
    border: none;
    font-size: 15px;
}

    .add-btn:hover {
        background-color: #0056b3;
    }

.submit-btn {
    background-color: #28a745;
    color: white;
    width: 100%;
}

    .submit-btn:hover {
        background-color: #1e7e34;
    }

.skill-input {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

    .skill-input input,
    .skill-input select {
        padding: 10px;
        border-radius: 6px;
        border: 1px solid #ccc;
        flex: 1;
        font-size: 14px;
    }

    .skill-input select {
        max-width: 150px;
    }


.experience-block input,
.experience-block textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    justify-content: center;
}

.experience-block textarea:hover {
    box-shadow: none;
    outline: none;
    border: 1px solid #ffb71b;
}

.experience-block textarea {
    box-shadow: none;
    outline: none;
}
