

.icon-container {
    display: flex;
    align-items: center;
    gap: 20px; /* Adjust the gap between icons and arrows as needed */
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.beginner {
    background-color: #4CAF50; /* Green color for Beginner */
}

.intermediate {
    background-color: #FFC107; /* Yellow color for Intermediate */
}

.expert {
    background-color: #F44336; /* Red color for Expert */
}

.arrow {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #333;
    position: relative;
    top: 0; /* Adjust to align with icon */
}