/* Styling for the skills container */
#skills-container {
    background-color: darkseagreen;
    color: #923b3b;
    display: flex;  
    border-radius: 10px;
    justify-content: space-between;  
    align-items: center;  
    flex-direction: column;
    text-align: left;  
    padding: 50px;
    border: 3px dashed #923b3b; 
    width: 80%; 
    margin: 20px auto; 
    max-width: 600px;
}

/* Styling for the heading (H2) inside the skills container */
#skills-container h2{
    text-align: center;
    margin-bottom: 20px;
}

/* Styling for the unordered list */
#skills-container ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-evenly;  
}

/* Styling for each list item */
#skills-container li {
    width: 30%; 
    margin-bottom: 20px; 
    position: relative;
}


progress {
    width: 100%;
    height: 20px;
    border-radius: 10px;
    border: 1px solid #923b3b;
    background-color: #f0f0f0; 
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.2),  
                0px 2px 6px rgba(0, 0, 0, 0.2); 
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.progress-text {
    display: none;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 10;
}

/* make fitted to bar and custome color  */
progress[value]::-webkit-progress-bar {
    background-color: #f0f0f0;  
    border-radius: 10px;
    box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.1); 
}
progress[value]::-webkit-progress-value {
    background: rgb(164, 216, 164); 
    border-radius: 10px;

}

/* Display the ments when the progress bar is hovered */
progress:hover + .progress-text {
    display: block;
}

/* when mouse come, shadow gettig darker */
progress:hover {
    background-color: #e8e8e8;  
    box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.2),  
                0px 4px 12px rgba(0, 0, 0, 0.3); 
}

.theme-button {
    border: 1px solid darkseagreen;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0.9em;
    background-color: #923b3b;  /* Set the background color of the button */
    color: white;  /* Set the text color of the button */
    border-radius: 5px;  /* Round the corners of the button */
    transition: background-color 0.3s ease;
  }


