
/* toast CSS кодууд */
.toast-container { position: fixed; top: 20px; right: 20px; z-index: 9999; }
.toast { padding: 10px; border-radius: 5px; color: white; display: none; }
.toast.success { background: green; }
.toast.error { background: red; }
.toast.show { display: block; }
table { width: 100%; border-collapse: collapse; margin-top: 20px; }
table, th, td { border: 1px solid #dddddd; }
th, td { padding: 8px; text-align: left; }
tr:hover { background-color: #f1f1f1; cursor: pointer; }
