body {
    background-color: #DFDFDF;
    padding-bottom: 50px;
}

.plugins {
    margin-top: 80px;
}

.search-bar-wrapper .available-plugins,
.search-bar-wrapper .available-macros,
.search-bar-wrapper .installing-help {
    font-weight: 500;
    font-size: 16px;
    color: #6A6A6A;
}

.search-bar-wrapper .available-plugins {
    display: block;
}
.search-bar-wrapper .available-macros {
    display: block;
}

.search-bar-wrapper .installing-help {
    display: block;
}

.search-bar-wrapper .installing-help a {
    color: #6A6A6A;
    font-weight: 700;
    text-decoration: none;
}

.search-bar-wrapper .installing-help a:visited {
    color: #6A6A6A;  
}

.search-bar-wrapper .installing-help a:hover {
    text-decoration: underline;
}

.search-bar-wrapper .available-plugins::after {
    content: " Plugins available";
}
.search-bar-wrapper .available-macros::after {
    content: " Macros available";
}

.search-bar-wrapper .search-input,
.search-bar-wrapper .category-select {
    color: #031B4F;
    font-weight: 700;
    font-size: 18px;
    background-color: #D8D8D8;
    border: solid 1px #BFBFBF;
    padding: 15px;
    width: 100%;
}

.search-bar-wrapper .category-select {
    grid-area: c;
    text-align: center;
    border-radius: 5px 0 0 5px;
    border-right: none;
}

.search-bar-wrapper .search-input {
    border-radius: 0 5px 5px 0;
}

.search-bar-wrapper .search-info {
    display: flex;
    justify-content: space-between;
}

.search-bar-wrapper .search-bar {
    display: grid;
    grid-template-columns: max-content auto;
    margin-top: 5px;
}

.plugins-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: max-content;
    margin-top: 35px;
    padding-bottom: 60px;
    gap: 20px;
}

.plugins-list .plugin {
    background-color: #F8F8F8;
    box-shadow: 0px 0px 5px 0px rgba(197,197,197,1);
    border-radius: 5px;
    padding: 9px;
    display: grid;
    grid-template-areas: 
        "a b"
        "c c"
        "d e";
    row-gap: 3px;
}

.plugins-list .plugin .plugin-title {
    color: #031B4F;
    font-weight: 500;
    font-size: 18px;
    grid-area: a;
}

.plugins-list .plugin .plugin-description {
    color: #727272;
    font-size: 13px;
    grid-area: c;
    margin-bottom: 10px;
    max-width: 90%;
}

.plugins-list .plugin .plugin-author {
    color: #727272;
    font-size: 13px;
    grid-area: d;
    margin-top: auto;
}

.plugins-list .plugin .plugin-author span {
    font-weight: 700;
}

.plugins-list .plugin .plugin-score {
    font-weight: 700;
    font-size: 13px;
    color: #F2AD1D;
    grid-area: e;
    margin-left: auto;
    align-self: self-end;
    cursor: pointer;
}

.plugins-list .plugin .plugin-score::after {
    content: "";
    display: inline-block;
    height: 24px;
    width: 24px;
    background-image: url("../img/plugin-score-award.svg");
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 1px;
    transform: translateY(8px);
}

.plugins-list .plugin .plugin-url {
    display: block;
    margin-left: auto;
    height: 23px;
    width: 23px;
    background-color: #DCDCDC;
    border-radius: 3px;
    background-image: url("../img/download-outline.svg");
    background-repeat: no-repeat;
    background-position: center;
    grid-area: b;
}
.plugins-list .plugin .plugin-showcase {
    display: block;
    margin-left: auto;
    height: 23px;
    width: 23px;
    background-color: #DCDCDC;
    border-radius: 3px;
    background-image: url("../img/external-link.svg");
    background-repeat: no-repeat;
    background-position: center;
    grid-area: b;
}

.developer {
    position: fixed;
    background-color: #DFDFDF;
    bottom: 0;
    height: 50px;
    line-height: 50px;
    width: 100%;
    color: #484848;
    font-weight: 500;
    font-size: 14px;
}

.developer a {
    font-weight: 700;
    text-decoration: none;
    color: #484848;
}

.developer a:visited {
    color: #484848;
}

.developer a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 800px) {
    .section.plugins {
        padding: 0 20px 30px 20px;
    }

    .plugins-list {
        grid-template-columns: 1fr;
    }

    .section.developer {
        display: none;
    }
} 