.card h5 {
    font-size: 18px;
    margin-top: -1rem;
    margin-bottom: 0.5rem;
}

.card img {
    margin-bottom: 0.5rem;
    /* Mengurangi jarak bawah gambar */
}

.status-detail {
    background-color: green;
    margin-bottom: 8px;
    /* Adjusted margin for spacing between the elements */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    border-radius: 10px;
    height: 36px;
    width: 60%;
}

.status-detail {
    background-color: #000;
    margin-bottom: 0;
    /* Remove bottom margin for the last element */
}

.status-group {
    display: flex;
    flex-direction: column;
    /* Changed to column to stack elements vertically */
    align-items: center;
    margin-top: 0.5rem;
}

.status-available {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #071FF2;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 14px;
}

.status-penuh {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #F44336;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 14px;
}

.status-digunakan {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #717171;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 14px;
}