.lnp-aff-setting {
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-family: Arial;
}

.lnp-aff-setting h2 {
    text-align: center;
    margin-bottom: 25px;
}

/* GRID */
.lnp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* ITEM */
.lnp-item {
    display: flex;
    flex-direction: column;
}

.lnp-item label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}

.lnp-item input {
    padding: 10px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    transition: 0.2s !important;
    border-radius: 10px !important;
}

.lnp-item input:focus {
    border-color: #667eea !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(102,126,234,0.15) !important;
}

/* BUTTON */
#lnp-save-setting {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}

#lnp-save-setting:hover {
    opacity: 0.9;
}

/*css thống kê ô vuông*/
.lnp-aff-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.lnp-stat {
    background: #fff;
    padding: 18px;
    border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: 0.2s;
}

.lnp-stat:hover {
    transform: translateY(-3px);
}

.lnp-stat span {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.lnp-stat strong {
    font-size: 20px;
    color: #333;
}
/*CSS CHART*/
.lnp-chart-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    // margin: 30px 0;
}

@media (max-width: 1080px) {
    .lnp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lnp-aff-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    #lnpChart30{
        height: 300px;
    }
}