/* CSS cho khung mật khẩu mới trong modal */
.modal-password-gate {
    margin-bottom: 10px; /* Khoảng cách với nút tải về */
    padding: 10px;
    
    border-radius: 5px;
   
    text-align: center; /* Căn giữa nội dung */
}

.modal-password-gate input[type="password"] {
    padding: 8px;
    margin-right: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: calc(100% - 110px); /* Điều chỉnh độ rộng cho phù hợp */
    box-sizing: border-box;
}

.modal-password-gate button {
    padding: 8px 15px;
    border: none;
    background-color: #5cb85c; /* Màu xanh lá cây */
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.modal-password-gate button:hover {
    background-color: #4cae4c;
}

.modal-password-message {
    font-size: 0.9em;
    color: red;
    margin-top: 8px;
    min-height: 1.2em; /* Đảm bảo không bị nhảy layout khi có/không có message */
}

/* CSS cho Dark Theme (nếu bạn có dark theme) */
body.dark-theme .modal-password-gate {
   
}

body.dark-theme .modal-password-gate input[type="password"] {
    background-color: #444;
    border-color: #666;
    color: #f0f0f0; /* Màu chữ sáng hơn */
}

body.dark-theme .modal-password-gate button {
    background-color: #007bff; /* Màu nút khác cho dark theme nếu muốn */
}
body.dark-theme .modal-password-gate button:hover {
    background-color: #0056b3;
}

body.dark-theme .modal-password-message {
    color: #ffc107; /* Màu thông báo khác cho dark theme nếu muốn */
}

