*{box-sizing: border-box;}
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}
.container-form {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.form-container {
    padding:5px;
    //border-radius: 8px;
    //box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 400px;
}
.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}
.form-container label {
    display: block;
    margin-bottom: 5px;
}
.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="search"],
.form-container select,
.form-container textarea,
.txtNote,
.form-container input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.form-container button,button[type="submit"] {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 200px;
    margin: 0 auto;
    margin-top: 15px;
    display: block;
}
.form-container .switch {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.form-container .switch a {
    text-decoration: none;
    color: #4CAF50;

}
.password-container{
    position: relative;
}
.password-icon{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.password-icon img{
    width: 20px;
    height: 20px;
}

.top-menu {
    background-color:rgb(18 165 108);
    color: #fff;
    padding: 5px 10px;
    padding-left:20px;
}

.top-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.top-menu ul li {
    display: inline-block;
    margin-right:12px;
}

.top-menu ul li a {
    text-decoration: none;
    color: #fff;
    padding: 5px 10px;
}

.top-menu ul li a:hover {
    background-color: #555;
}

.content {
    padding:10px 10px;
}
.content h1 {
    font-size: 20px;
}

.content p {
    
}

.table-container {
    overflow-x: auto;
}

table {
    border-collapse: collapse;
    width: 100%;
}

table th, table td {
    border: 1px solid #ccc;
    text-align: left;
}

table th {
    padding: 8px;
    background-color:rgb(18 165 108);
    color: #fff;
}
table td {
    padding: 0px 10px;
}
tr:hover {
    /* background-color: #f2f2f2; */
}

tr.selected-row {
    background-color: #bbd2e3!important;
}
tr:nth-child(even) {
    /* background-color: #f2f2f2; */
}

.fird{
    display: block;
    width: 100%;
    padding: 10px 10px;
}
.mua {
    position: relative;
}

.mua input[type="number"],input[type="text"],input[type="search"] {
    padding: 10px 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.mua input[type="number"]:focus-visible{
    border: 1px solid #ccc;
}
.mua button {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    background-color: #4CAF50;
    border: 1px solid #4caf50;
    color: white;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black background with opacity */
}
.modal-content {
    background-color: #fefefe;
    margin: 10% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    max-width:500px; /* 80% width */
    width:100%;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
@keyframes blink{0%{color:red}50%{color:blue}100%{color:red}}.blinking-text{animation:blink 1s infinite}

#loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it's on top of other elements */
}
.loading-spinner {
    border: 8px solid #f3f3f3; /* Light gray border */
    border-top: 8px solid #3498db; /* Blue border on top */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite; /* Rotation animation */
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

ol, ul{margin:0;padding:0;}
ul.setPaginate li.setPage{padding:5px 10px;font-size:12px;background:#eee;border-radius:5px;margin-right:10px}
ul.setPaginate{margin:0;padding:0;overflow:hidden;font:12px Arial,Helvetica,sans-serif;list-style-type:none;text-align:center;display:block;margin-top:10px;margin-bottom:10px}
ul.setPaginate li.dot{padding:8px 5px}
ul.setPaginate li{display:inline-block;margin:0;padding:0;margin-bottom:10px}
ul.setPaginate li a{padding:5px 10px;background:#eee;border-radius:4px;text-align:center;color:#333;margin-right:4px;font-size:12px;cursor:pointer}ul.setPaginate li a:hover,
ul.setPaginate li a.current_page {background:#ccc;}
@media only screen and (max-width: 768px) {
    .email_mobi{display:none}
    .top-menu {
        text-align: center;
        padding: 5px 10px;
    }

    .top-menu ul {
        display: block;
    }

    .top-menu ul li {
        margin-right: 0px;
    }
    .top-menu ul li a{
        padding: 5px 5px;
        font-size: 13px;
    }
}
.notifyjs-corner{right:250px !important;;}
