body {
    color: #aab8c5;
    background-color: #181C14;
    font-family: Arial, Helvetica, sans-serif;
}

.page-title sup {
    font-size: 10px;
    cursor: help;
}

.row {
    background-color: #343a40;
}

.iconSearch-area {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #cccccc38;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.iconSearch-area:hover {
    box-shadow: inset rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.iconSearch-area input {
    color: white;
    outline: none;
    border: none;
    background-color: transparent;
    width: 200px;
    font-size: 16px;
}

.navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 9;
    background: rgb(52 58 64 / 67%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #cccccc38;
    margin: 10px auto;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.noresult {
    border: 1px solid #cccccc0e;
    box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.row {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.card-body {
    padding-bottom: 20px;
    margin: 20px;
}

.icons-list-demo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.header-title {
    border-bottom: 1px solid #cccccc38;
    padding: 20px;
    position: sticky;
    top: 68px;
    background-color: #343a40;
    z-index: 1;
}

.icon-component {
    position: relative;
    cursor: pointer;
    display: flex;
    gap: 10px;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.icon-component:hover {
    border: 1px solid #cccccc38;
    box-shadow: inset rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.copied {
    position: absolute;
    top: 3px;
    right: 5px;
    border: 1px solid rgba(154, 161, 171, 0.15);
    box-shadow: inset 0px 0px 35px 0px #cccccc0e;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

@media screen and (max-width: 1100px) {
    .icons-list-demo {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 850px) {
    .icons-list-demo {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 500px) {
    .icons-list-demo {
        grid-template-columns: repeat(1, 1fr);
    }

    .navbar {
        flex-direction: column;
        padding-bottom: 20px;
    }

    .header-title {
        top: 130px;
    }
}