.nv-textarea-copy:focus {
     background:rgb(255 255 255 / 9%);
    background-color:rgb(255 255 255 / 9%);
}

.nv-textarea-copy:hover {
    background: rgb(255 255 255 / 9%);
}


.nv-textarea-wrap{
    position:relative;
}

.nv-textarea{
    width:100%;
    min-height:180px;
    padding:14px;
    padding-right:55px;
    box-sizing:border-box;
}

.nv-textarea-copy{
    position:absolute;
    top:10px;
    right:10px;
    width:36px;
    height:36px;
    border:none;
    border-radius:8px;
    background:rgb(255 255 255 / 9%);
    color:#fff;
    cursor:pointer;
    font-size:18px;
	padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.2s ease;
}

.nv-textarea-copy:hover{
    opacity:0.9;
    transform:scale(1.05);
}






.nv-controls {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 16px;
}

.nv-color-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nv-color-item label {
    font-size: 13px;
    color: #ccc;
    white-space: nowrap;
}

.nv-color-item input[type="color"] {
    width: 100%;
    height: 32px;
    padding: 0;
    border: none;
    cursor: pointer;
    background: none;
}

.nv-btn-row {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.nv-btn-row button {
    flex: 1;
    width: 100%;
}

.nv-preview-btn {
    margin-top: 10px;
    margin-left: 10px;
    padding: 10px 16px;
    background: #ff7a00;
    color: #000;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

.nv-preview-btn:hover {
    color: #fff !important;
    background: #ffb347 !important;
}

.nv-preview-box {
    margin-top: 20px;
}

.nv-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: #fff;
}

.nv-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top: 3px solid #00e676;
    border-radius: 50%;
    animation: nvSpin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes nvSpin {
    to {
        transform: rotate(360deg);
    }
}

.nv-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff;
}

.nv-space-top {
    padding-top: 30px;
}

.nv-textarea {
    width: 100%;
    height: 330px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 10px;
    font-size: 13px;
    resize: none;
    background: rgba(255,255,255,0.06);
    color: #ffffffc4 !important;
}

.nv-copy-btn {
    margin-top: 12px;
    padding: 10px 16px;
    background: #00e676;
    color: #000;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}
