.notice {border-radius:5px;padding:5px 10px;margin: 20px auto}
.notice-success {border: solid 1px #0f7013;font-weight: bold;color:#0f7013}
.notice-error {border: solid 1px #b20000;font-weight: bold;color:#b20000}
.form-nhapdl,.form-showdl input,.form-showdl select, .form-nhapdl input,.form-nhapdl select,.form-nhapdl textarea {font-size:25px;border-radius: 10px!important}
.form-showdl {display: flex; justify-content: space-between; align-items: center; padding: 10px 0;font-size:25px}
.form-select {flex: 3; margin-right: 20px}
.form-btn {flex: 1}
.form-btn input {width: 100%}
.a-link {font-weight: bold;color:blue}

.form-row {
    display: flex;
    width: 100%;
}

.form-row p {
    flex: 1;
    margin-right: 10px; /* Điều chỉnh khoảng cách giữa các trường */
}


/* CSS cho Modal Đăng Nhập */
#loginModal {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.loginModal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius:10px;
    width: 90%;
    max-width: 600px;
}

.loginModal-header {
    padding: 2px 16px;
}

.loginModal-body {padding: 2px 16px;}

.loginModal-header .close {
    color: black;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.loginModal-header .close:hover,
.loginModal-header .close:focus {
    color: red;
    text-decoration: none;
    cursor: pointer;
}


/* CSS phản hồi cho mobile */
@media (max-width: 768px) {
    .form-row{
        flex-direction: column;
    }
    
    .form-row p {
        margin-right: 0; /* Loại bỏ khoảng cách bên phải trên mobile */
    }
    .form-row .form-select, .form-row .form-btn {
        width: 100%!important;margin-bottom: 10px;
    }
}