.app-card {
    background-color: #111;
    /* Slight contrast from background */
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    margin-bottom: 15px;
}

.app-card:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}


.app-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.app-info img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
}

.btn:hover {
    background-color: var(--whiteColor);
    color: #000;
}