.mastery-container {
display: flex;
flex-wrap: nowrap;
overflow: auto;
gap: 20px;
padding-bottom: 15px;
}
.mastery-card {
background-color: #101826;
border-radius: 10px;
width: 100%;
max-width: 200px;
min-width: 200px;
box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.mastery-card-info {
display: flex;
align-items:center;
justify-content: space-between;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
}
.mastery-requirement {
background-color: #ccc6c0;
color: black;
padding: 3px;
}
.mastery-image {
width: 100%;
height: 120px;
object-fit: cover;
border-radius: 6px 6px 0 0;
margin-bottom: 10px;
}
.mastery-card-header {
height: 120px;
}
.mastery-reward {
color: #ccc;
}
a {
color: #4fa8ff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}