#plugin-list {
    list-style: none;
    padding: 0;

    .plugin-item {
        border: 1px solid #cecece;
        padding: 10px;
        border-radius: 5px !important;
        margin: 10px 0;
        background: #ffffff;
    }

    p {
        margin: 5px 0;
    }

    h3 {
        font-weight: bold;
    }

    .plugin-description {
        font-style: italic;
    }

    li {
        display: block;
        padding: 10px;

        &:nth-child(2n) {
            background: #eeeeee;
        }

        &:nth-child(2n + 1) {
            background: #ffffff;
        }

        .btn {
            margin: 10px 0;
        }

        p {
            margin: 0;
        }

        .plugin-name {
            font-size: 14px;
            font-weight: bold;
        }
    }

    .app-grid--blank-slate {
        .app-card-item {
            margin-bottom: 20px;
        }

        .app-card-item:nth-child(2n + 1) {
            clear: none;
        }

        .app-item {
            padding: 0;
            box-sizing: border-box;
            border: none !important;
            overflow: hidden;
            border-radius: 3px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            background: #ffffff;

            .app-icon {
                display: flex;
                justify-content: center;
                align-items: center;
                margin: 0 auto;
                height: 120px;
                background-color: #7fc8d6;
                background-repeat: no-repeat;
                background-size: cover;
                background-position: center;
                border-radius: 3px 3px 0 0;
                overflow: hidden;

                img {
                    max-width: 100%;
                    max-height: 100%;
                }
            }

            .app-details {
                background: #ffffff;
                padding: 10px 10px 5px;
                position: relative;

                .app-name {
                    margin: 0 0 5px;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    font-size: 14px;
                    font-weight: bold;
                    color: #333333;
                    line-height: inherit;
                }
            }

            .app-footer {
                background: #f5f5f5;
                border-top: 1px solid #e8e8e8;
                padding-left: 10px;
                padding-bottom: 12px;
                position: relative;

                .app-description {
                    border-top: 1px solid #eeeeee;
                    margin-left: -10px;
                    padding-left: 10px;
                    padding-top: 5px;
                    padding-right: 10px;
                    height: 30px;
                    color: #aaaaaa;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                }

                .app-actions {
                    margin-top: 4px;
                }
            }
        }

        .app-item:hover {
            .app-details {
                color: #59a4d2;
            }

            .app-name {
                color: #79ac2a;
            }
        }
    }
}
