#skills-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
}

#skills-container {
    margin-top: 30px;
}

.skill-item {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-family: Arial;
    font-weight: bold;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

.NightMode .progress-bar {
    background-color: #444;
}
.NightMode .skill-info {
    color: #37FF8B;
}