body {
    background: #121212;
    color: #eee;
    font-family: Arial;
    margin: 0;
}

header {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: #1e1e1e;
    position: sticky;
    top: 0;
}

input {
    padding: 10px;
    flex: 1;
    border-radius: 6px;
    border: none;
}

.btn {
    background: #4caf50;
    color: white;
    padding: 10px;
    text-decoration: none;
    border-radius: 6px;
}

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

th, td {
    padding: 10px;
    border-bottom: 1px solid #333;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.actions {
    display: flex;
    gap: 10px;
}

.login-box {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box form {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 250px;
}

.login-box input {
    padding: 10px;
    border-radius: 6px;
    border: none;
}

.login-box button {
    padding: 10px;
    background: #4caf50;
    border: none;
    color: white;
    border-radius: 6px;
}

.btn-edit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #2196f3;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
}

.btn-edit:hover {
    background: #1976d2;
}

td:nth-child(2) {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 22px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: .3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: .3s;
}

input:checked + .slider {
    background-color: #4caf50;
}

input:checked + .slider:before {
    transform: translateX(18px);
}