#version-box {
    margin: auto;
    padding: 2.5rem 4rem;
    background: linear-gradient(135deg, #262625, #4b4b49);
    border-radius: 15px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.version-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.version-part {
    font-size: 42px;
    font-family: monospace, 'Courier New', Courier;
    font-weight: bold;
    line-height: 1;
}

.version-part.major {
    color: #fa869d;
}

.version-part.minor {
    color: #ffca80;
}

.version-part.patch {
    color: #85de85;
}

.dot {
    font-size: 42px;
    font-weight: bold;
    color: white;
    line-height: 1;
    margin-top: 5px;
}

.label {
    font-size: 22px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    margin-top: 10px;
}

.label.major {
    color: #fa869d;
}

.label.minor {
    color: #ffca80;
}

.label.patch {
    color: #85de85;
}

.custom-card {
    height: 100%;
}

.custom-card .card-content {
    border-top: 2px solid #fde3ab;
    padding: 1.25rem;
}

.custom-card .card-image img {
    object-fit: contain;
    padding: 12px;
}

.card-image.fixed-height {
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image.fixed-height img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}
