.skills-panel {
    background-color: #121212;
    border-radius: 5px;
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the start (left) */
    text-align: left; /* Align text to the left */
    margin-bottom: 20px;
    -webkit-user-select: none; /* Safari */
    user-select: none;
}

.skills-panel {
    background: none;
}

.skills-panel {
    display: flex;
    flex-direction: column; /* Keep the title on top and tags below */
    align-items: flex-start; /* Align items to the start (left) */
    gap: 10px; /* Space between the title and the tag list */
    padding: 10px;
    border-radius: 5px;
    width: 100%; /* Ensure it takes full width of its parent */
}

.skills-panel .software-tag-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* Align items to the start (left) */
    gap: 10px;
    width: 100%;
}

.software-tag {
    background-color: #2d2d2d;
    color: lightgray;
    padding: 5px 10px;
    border-radius: .25em;
    font-size: 14px;
    white-space: nowrap; /* Prevent tags from breaking into multiple lines */
}

hr {
    opacity: .05;
}