﻿/* Start of progress-bars.css */
.skill {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.skill span {
    width: 100px;
    text-align: left;
}

.progress-bar {
    flex: 1;
    /* background-color: var(--forground, #eceae5); */
    border-radius: 5px;
    overflow: hidden;
    height: 15px;
}

.progress {
    height: 100%;
    background-color: var(--accent, #ba5aff);
    /* Green color for progress */
    transition: width 0.3s ease;
}

.skill span:last-child {
    text-align: right;
    margin-left: 1rem;
}
/* End of progress-bars.css */

/* Start of social-icons.css */
.social-icons {
    display: flex;
    gap: 10px;
    justify-content: left;
    align-items: center;
    fill: var(--accent, #ba5aff);
    stroke: var(--accent, #ba5aff);
}

.social-icons a svg {
    display: inline-block;
    width: 64px;
    height: 64px;
    stroke: var(--accent, #ba5aff);
    fill: var(--accent, #ba5aff);
}

.social-icons a svg:hover {
    transform: scale(1.2);
    transition: transform 0.2s ease;
    stroke: var(--foreground, #ba5aff);
}
/* End of social-icons.css */


