/* styles.css */
.cpf-user-actions {
    display: grid;
    grid: auto-flow dense / 1fr 1fr;
    grid-gap: 30px;
}

.cpf-user-card.cpf-user-faqs {
    grid-column-start: 1;
    grid-column-end: 3;
}

.cpf-user-box-help {
    display: grid;
    justify-items: start;
}

.cpf-user-card {
    background: #1c1c1c;
    border-radius: 6px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.cpf-user-card-icon svg path {
    fill: #fff;
}

.cpf-user-card-icon {
    width: 60px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1 / 1;
    grid-row: 1 / 1;
}

.cpf-user-card-icon svg {
    width: 100%;
    height: 100%;
}

.cpf-user-card-title {
    font-weight: bold;
    font-size: clamp(18px,5vw,22px);
    margin: 0 0 10px;
    grid-column: 1 / 1;
    grid-row: 1 / 1;
}

.cpf-user-card-content {
    grid-column: 1 / -1;
    grid-row: 2 / 2;
}

.cpf-user-card-content-action {
    margin-block-start: 15px;
}

.cpf-user-card.cpf-user-faqs {
    background: var(--gold);
}

.cpf-user-box {
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 5px;
    margin: 30px 0;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
}

@media (min-width: 782px) {
    .cpf-user-box {
        grid-template-columns: 1fr 1fr;   
    }
}

.cpf-user-box-title {
    font-weight: bold;
    font-size: clamp(18px,5vw,22px);
    margin: 0 0 10px;
}

.cpf-user-box-actions {
    grid-gap: 20px;
    margin: 30px 0 0;
    gap: 5px;
}

.cpf-user-box-feed-info {
    margin: 2em 0 0;
}

.cpf-user-box-feed-info p {
    margin: 0;
    text-align: center;
}

.cpf-user-box-feed-info a {
    color: inherit;
    opacity: .5;
}

.cpf-user-box-feed-info a:hover {
    opacity: 1;
}

.cpf-user-box-feed-info span:empty {
    display: none !important;
}

.cpf-user-box-button {
    display: flex;
    width: 100%;
}

button.cpf-button-copy {
    background: var(--gold);
    border-radius: 0 6px 6px 0;
    border: none;
    font-weight: bold;
    color: var(--white);
    text-transform: uppercase;
    cursor: pointer;
    border-left: 1px solid #000;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.cpf-user-box-button input {
    padding: 15px;
    border: none;
    border-radius: 6px;
    flex: 1;
}

button.cpf-button-copy:hover {
    color: var(--gold);
    background: var(--white);
}

.cpf-devices-head {
    margin-top: 0;
}

.cpf-devices {
    display: grid;
    grid: auto-flow dense / 1fr 1fr 1fr;
    grid-gap: 30px;
}

.cpf-device {
    background: #1c1c1c;
    border-radius: 6px;
    padding: 15px;
}

form.cpf-device-head {
    text-align: right;
    float: right;
}

form.cpf-device-head button {
    background: red;
    border: none;
    color: white;
    border-radius: 50%;
    font-size: 18px;
    opacity: .8;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    cursor: pointer;
}

form.cpf-device-head button:hover {
    opacity: 1;
}

.cpf-device-agent {
    margin: 0 0 10px;
    font-weight: bold;
}

.cpf-device-ip {
    opacity: 0.5;
}

.cpf-devices-none {
    background: #1c1c1c;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    border-radius: 6px;
}

.cpf-devices-inner {
    font-size: 24px;
    opacity: 0.5;
}

.cpf-user-box-button {
    line-height: 1;
}

.cpf-user-box-button .carlin-episode-button a img {
    width: 30px;
    margin-right: 10px;
}

.cpf-user-box-button span.carlin-button-text {
    display: flex;
    flex-direction: column;
}

.cpf-user-box-button .carlin-episode-button a {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    padding: 10px 15px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.cpf-user-box-button span.carlin-button-lead {
    font-size: 14px;
}

.cpf-user-box-button .carlin-episode-button a:hover {
    transform: translate(0, -3px);
}

.cpf-user-box-button button.cpf-button-copy {
    max-width: 100px;
}

.cpf-user-box-button > button, .cpf-user-box-button > input {
    flex: 1;
}

@media screen and (max-width: 767px) {

    .cpf-devices {
        grid-gap: 15px;
        grid: auto-flow dense / 1fr 1fr;
    }

}

@media screen and (max-width: 550px) {

    .cpf-devices {
        grid-gap: 15px;
        grid: auto-flow dense / 1fr;
    }

}