.show-apps-area {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.app-wrapper {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    position: relative;
}

.app-wrapper:hover {
    transform: scale(1.02);
}

.app-icon {
    position: relative;
    margin-bottom: 20px;
}

.app-icon img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 20px;
}

.app-icon .new-icon {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 24px;
    height: 24px;
    background-size: contain;
}

.app-details {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.app-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.app-row .label {
    font-weight: bold;
    width: 20%;
    margin-right: 10px;
    text-align: left;
}



.app-description-text {
    width: 100%;
}

.status-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    align-items: center;
}

.status-icon {
    width: 20px;
    height: 20px;
}

.app-extra-details {
    display: none;
    margin-top: 20px;
    border-top: 1px solid #dee2e6;
    padding-top: 20px;
}

.app-actions {
    display: flex;
    justify-content: space-between;
}

.app-actions .btn {
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
}