body {

    background: #111;
    color: white;

    font-family: Arial;
    margin: 0;
}

.topbar {

    background: #1b1b1b;

    padding: 15px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-box {

    width: 300px;

    margin: 100px auto;

    background: #1b1b1b;

    padding: 20px;

    border-radius: 10px;
}

input {

    width: 100%;

    margin-bottom: 10px;

    padding: 10px;

    background: #222;

    color: white;

    border: none;
}

button {

    padding: 10px 15px;

    background: #444;

    color: white;

    border: none;

    cursor: pointer;
}

table {

    width: 100%;

    border-collapse: collapse;
}

td, th {

    border: 1px solid #333;

    padding: 10px;
}

.card {

    background: #1b1b1b;

    margin: 10px;

    padding: 10px;

    border-radius: 8px;
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.modal-content {
	background: #1b1b1b;
	padding: 30px;
	border-radius: 10px;
	max-width: 500px;
	border: 1px solid #333;
}

.modal-content h2 {
	margin-top: 0;
	color: white;
}

.modal-content p {
	color: #ccc;
	line-height: 1.6;
}

.modal-content a {
	color: #66b3ff;
	text-decoration: none;
}

.modal-content a:hover {
	text-decoration: underline;
}

.modal-content label {
	display: flex;
	align-items: center;
	margin: 15px 0;
	cursor: pointer;
}

.modal-content input[type="checkbox"] {
	width: auto;
	margin-right: 10px;
	margin-bottom: 0;
	cursor: pointer;
}

.modal-content button {
	margin-right: 10px;
	margin-top: 10px;
	padding: 10px 20px;
}