.app-card {
    border-radius: 15px;
    background: #fff;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    height: 118px;
}

@media (min-width: 1300px) {
    .app-card {
        width: 346px;
    }
}

.app-card img {
    width: 60px;
    height: -webkit-fill-available;
    border-radius: 12px;
    object-fit: cover;
}

.app-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-info small {
    font-size: 12px;
    color: #555;
}

.btn-open {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 13px;
    margin-left: auto;
}

.btn-share {
    background: transparent;
    border: none;
    font-size: 18px;
    color: #555;
    margin-left: 8px;
}

.text-left {
    text-align: left;
}

/* Share modal */
#shareModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#shareModal .modal-content {
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 420px;
    padding: 16px;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.share-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #eee;
    text-align: left;
    width: 100%;
    margin-bottom: 8px;
    background: white;
    transition: background 0.2s;
    cursor: pointer;
}

.share-option:hover {
    background: #f5f5f5;
}

.share-option i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.share-option.whatsapp i {
    color: #25D366;
}

.share-option.facebook i {
    color: #1877F2;
}

.share-option.x i {
    color: #000000;
}

.share-option.copy i {
    color: #666;
}

.share-option.native i {
    color: #007bff;
}