.gl-top-devices {
    display: flex;
    flex-direction: column;

    grid-row-start: 4;
    grid-row-end: span 1;
    grid-column-start: 1;
    grid-column-end: -1;

    padding-bottom: 4rem;

    color: whitesmoke;
    background-image: linear-gradient(to bottom right, #161616, #242424);
}

.gl-top-devices-titles {
    display: flex;
    flex-direction: column;
    margin: 3rem 32px 0.5rem 32px;
}

#gl-top-devices-title {
    color: white;
    font-size: 2.3rem;
    font-family: "Elms Sans", sans-serif;
    margin: 0;
}

#gl-top-devices-subtitle {
    color: gray;
    font-weight: bold;
    font-family: "Elms Sans", sans-serif;
    margin: 0;
    width: fit-content;
    padding-bottom: 2px;
    padding-right: 0.5rem;
    border-bottom: 3px solid var(--gl-subtitle-underline);
}

#gl-top-devices-paragraph {
    color: var(--gl-top-devices-paragraph);
    margin: 1rem 32px 2.5rem 32px;
}

.gl-top-devices-data-container {
    display: flex;
    flex-direction: row;
    padding: 1rem 32px 0.5rem 32px;
    overflow-x: auto;
}

.gl-top-devices-data {
    border-collapse: separate;
    border-spacing: 0;
}

.gl-top-devices-data-header {
    background-color: rgba(255, 255, 255, 0.08);
    transition: all 250ms ease-in-out;
}

.gl-top-devices-data-header:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.gl-top-devices-data-th {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: bold;
    text-align: left;
    border: 1px solid #999;
}

.gl-top-devices-data-th-labbit {
    width: 16px;
    height: 16px;
}

.gl-top-devices-data-th:first-child {
    border-top-left-radius: 8px;
}

.gl-top-devices-data-th:last-child {
    padding: 0.5rem 1.5rem 0.2rem 1.5rem;
    border-top-right-radius: 8px;
}

.gl-top-devices-data-td {
    padding: 0.5rem 1rem;
    font-size: 0.65rem;
    font-weight: bold;
    text-align: left;
    border: 1px solid #999;
}

.gl-top-devices-data tr:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.gl-top-devices-data tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

.gl-top-devices-data tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

/* WIDTH BREAKPOINTS ------------------------------------------------------------------------------------------------ */
/* sm */
@media (min-width: 640px) {
}

/* md */
@media (min-width: 768px) {
    .gl-top-devices-titles {
        margin-left: 8rem;
        margin-right: 8rem;
    }

    #gl-top-devices-paragraph {
        margin-left: 8rem;
        margin-right: 8rem;
    }

    .gl-top-devices-data-container {
        padding-left: 8rem;
        padding-right: 8rem;
    }

    .gl-top-devices-data {
        width: 100%;
    }
}

/* lg */
@media (min-width: 1024px) {
}

/* xl */
@media (min-width: 1280px) {
}

/* 2xl */
@media (min-width: 1536px) {
    .gl-top-devices-titles {
        margin-left: 16rem;
        margin-right: 16rem;
    }

    #gl-top-devices-paragraph {
        margin-left: 16rem;
        margin-right: 16rem;
    }

    .gl-top-devices-data-container {
        padding-left: 16rem;
        padding-right: 16rem;
    }
}

/* 3xl */
@media (min-width: 1800px) {
}

/* 4xl */
@media (min-width: 2200px) {
}

