body {
    display: flex;
    justify-content: center;
    height: 100vh;
    background-color: #161616;
    font-family: Arial, sans-serif;
    margin: 0;
    color: white;
}

.login-container {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.login-container h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.login-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: #0056b3;
}

* {
    box-sizing: border-box;
}

.sidebar {
    width: 250px;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    padding: 20px;
    width: 200px;
}

.logo-container img {
    max-width: 100%;
    height: auto;
}

.sidebar ul {
    list-style-type: none;
    padding: 10px 20px 20px 20px;
    margin: 0;
    flex-grow: 1;
    width: 100%;
}

.sidebar ul li {
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 8px;
    line-height: 28px;
    display: flex;
    align-items: center;
}

.sidebar svg {
    margin-right: 15px;
}

.sidebar ul a {
    text-decoration: none;
    color: #fff;
}

.sidebar ul li:hover {
    cursor: pointer;
    background-color: #815bff;
    color: #000;
}

.sidebar ul li:hover .icon {
    fill: black;
}

.content {
    flex-grow: 1;
    padding: 20px;
}

.upload-form {
    max-width: 600px;
    padding: 20px;
    background-color: #353535;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #815bff;
    border: none;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.panic-form {
    margin-top: 15px;
}

.btn:hover {
    background-color: #6c4cd5;
}

.btn-primary {
    background-color: #815bff;
}

.file-list {
    list-style-type: none;
    padding: 0;
    margin: 20px 0 0;
}

.file-list li {
    margin-bottom: 10px;
}

.file-list a {
    color: #815bff;
    text-decoration: none;
}

.file-list a:hover {
    text-decoration: underline;
}

.table th, .table td {
    padding: 15px;
    text-align: left;
}

.table-primary {
    background-color: #f2f2f2;
}

.table-secondary {
    background-color: #e6e6e6;
}

.table-gap {
    height: 20px;
    background-color: transparent;
}
