button, 
input, 
textarea, 
select {
    box-shadow: none !important;
    outline: none !important;
}

.btn-blue {
    background-color: #1D5BAE;
    border-color: #1D5BAE;
    color: #ffffff;
}

.btn-blue:hover {
    color: #ffffff;
}

.btn-green {
	background-color: #00A989;
	border-color: #00A989;
	color: #ffffff;
	margin: 5px;
}

.btn-green:hover {
	color: #ffffff;
}

.btn-red {
	background-color: #E74C3C;
	border-color: #E74C3C;
	color: #ffffff;
}

.btn-red:hover {
	color: #ffffff;
}

.btn-purple {
	background-color: #8E44AD;
	border-color: #8E44AD;
	color: #ffffff;
}

.btn-purple:hover {
	color: #ffffff;
}

.btn-grey {
	background-color: grey;
	border-color: grey;
	color: #ffffff;
}

.btn-grey:hover {
	color: #ffffff;
}

.icon-green {
	color: #00A989;
	margin: 5px;
}

.icon-red {
	color: #E74C3C;
	margin: 5px;
}

.icon-gray {
	color: grey;
	margin: 5px;
}





.notify-box {
                position: fixed;
                top: -100px;
                left: 50%;
                transform: translateX(-50%);
                background: #28a745;
                color: #fff;
                padding: 12px 20px;
                border-radius: 8px;
                font-weight: bold;
                font-size: 16px;
                box-shadow: 0 4px 12px rgba(0,0,0,0.2);
                z-index: 2000;
                transition: top 0.4s ease-in-out, opacity 0.4s;
                opacity: 0;
            }
            .notify-box.show {
                top: 20px;
                opacity: 1;
            }

            #saveBtn {
    position: fixed;
    top: 10px;
    right: 10px;
    padding: 8px 14px;
    background: #1D5BAE;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
#saveBtn:hover {
    background: #154785;
}