#usn-note-form {
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    position: fixed; /* Make the form fixed so it can be dragged anywhere */
    top: 15%; /* Initial position */
    Right: 32px; /* Initial position */
    z-index: 99; /* Ensure the form is above other content */
    width: 30%; /* Set a fixed width */
    cursor:move;
	 resize: none; /* Disable default resize */
}

.usn-note-wrapper{
	cursor: se-resize;
}

#usn-note-form .usn-save-note:hover,
#usn-note-form .usn-save-note:focus,
#usn-view-note-popup .usn-save-note:hover,
#usn-view-note-popup .usn-save-note:focus{
    background-color: #FFFFFF !important;
    color: #222222 !important; 
}

#usn-view-note-popup {
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #ccc;
    background: #f9f9f9;
   
    z-index: 99; /* Ensure the form is above other content */
    width: 55%; /* Set a fixed width */
   

    position: fixed;
    top: 50%; /* Move the top edge to the vertical center */
    left: 50%; /* Move the left edge to the horizontal center */
    transform: translate(-50%, -50%); /* Shift the element back by 50% of its own width and height */
   
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

#usn-note-header {
    padding: 5px;
    background: #0073aa;
    color: #fff;
   
}

#usn-note-text {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
}

.usn-save-note{
    
margin-top:10px;

background-color: #FFFFFF;
font-family: "Inter", Sans-serif;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
line-height: 18px;
fill: #222222;
color: #222222;
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: #222222;
border-radius: 32px 32px 32px 32px;
}

.usn-close-form{
    margin-top: 10px;
    background-color: #e76200;
    font-family: "Inter", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 18px;
    fill: #222222;
    color: #FFF;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #e76200;
    border-radius: 32px 32px 32px 32px;
    margin-left: 10px;
}
#usn-note-form .usn-close-form:hover,
#usn-note-form .usn-close-form:focus,
#usn-view-note-popup .usn-close-form:hover,
#usn-view-note-popup .usn-close-form:focus{
    background-color: #f16500 !important;
    color: #fff !important; 
}

.usn-button,
.usn-button:hover,
.usn-button:active{
    background: #f16500 !important;
    color: #fff;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    position: fixed;
    top: 90.5%;
    width: 214px;
    right: 120px;
    z-index: 4;
    font-family: "Inter", Sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
   
}

.usn-button:hover {
    background: #f16500;
}

#usn-toggle-form{
	    font-size: 12px;
    width: 132px;
}

#usn-notes-list {
    margin-top: 20px;
}

.usn-delete-note,
.usn-delete-note:hover,
.usn-delete-note:active{
    background: red !important;
    color: white;
	border-color: red;
	margin-left:10px;
	width:93px;
}

.usn-view-note-header{
    font-family: "Jost", Sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.btn-usn,
.btn-usn:hover,
.btn-usn:active{
	color: #e76200 !important;
	border: 1px solid #e76200 !important;
	background: transparent !important;
}

button:hover,
[type=button]:hover{
	background-color: transparent !important;
}


.usn-msg-suc{
	padding: 8px;
    border: 1px solid green;
    margin-top: 12px;
    margin-bottom: 5px;
    color: green;
    background: #ffffff;
}

@media only screen and (max-width: 1024px) {
	 #usn-view-note-popup {
		width: 80%;
	}
	#usn-note-form {
		width: 80%;
	}
}

@media only screen and (max-width: 400px) {
	
}
