* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #212529;
  color: #ffffff;
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
  padding: 20px;
}

a {
  color: #c9a762;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #c9a762;
  margin-bottom: 0.5em;
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
textarea,
select {
  background-color: #16181b;
  border: 1px solid #c9a762;
  color: #ffffff;
  padding: 10px;
  margin-bottom: 15px;
  width: 100%;
  border-radius: 4px;
}

button,
input[type=submit] {
  background-color: #c9a762;
  color: #212529;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}
button:hover,
input[type=submit]:hover {
  background-color: #d6bc88;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
table th,
table td {
  border: 1px solid #383f45;
  padding: 10px;
  text-align: left;
}
table th {
  background-color: #c9a762;
  color: #212529;
}
table tr:nth-child(even) {
  background-color: #16181b;
}

.container {
  max-width: 1000px;
  margin: auto;
  background-color: #1c2023;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.alert {
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.alert.success {
  background-color: #28a745;
  color: white;
}
.alert.error {
  background-color: #dc3545;
  color: white;
}
.alert.info {
  background-color: #17a2b8;
  color: white;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100vh;
  background-color: #1a1d21;
  padding: 20px;
  overflow-y: auto;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
}
.sidebar nav {
  display: flex;
  flex-direction: column;
}
.sidebar nav a {
  color: #ffffff;
  padding: 10px 0;
  border-left: 4px solid transparent;
  transition: all 0.2s;
}
.sidebar nav a:hover, .sidebar nav a.active {
  color: #c9a762;
  border-color: #c9a762;
  padding-left: 10px;
}

.main {
  margin-left: 240px;
  padding: 30px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    background-color: #c9a762;
    color: #212529;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2000;
    border-radius: 4px;
    cursor: pointer;
  }
  .menu-toggle:hover {
    background-color: #d6bc88;
  }
  .sidebar {
    transform: translateX(-100%);
    width: 100%;
    height: auto;
    position: fixed;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    background-color: #1a1d21;
    z-index: 99;
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .main {
    margin-left: 0;
    padding-top: 60px;
  }
}
.section, .file-list, .list-section, .form-section {
  background-color: #1c2023;
  background-color: #3b3b3b;
  padding: 25px 30px;
  border-radius: 6px;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-left: 4px solid #c9a762;
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-section h2,
.form-section h3 {
  margin-bottom: 15px;
}

.list-section table {
  margin: 0;
}

.section-header {
  font-size: 1.4em;
  font-weight: bold;
  color: #c9a762;
  border-bottom: 1px solid #383f45;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.file-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
  background-color: #3b3b3b;
  padding: 20px;
}
.file-list .file-item {
  background-color: #1a1d21;
  border-left: 4px solid #c9a762;
  padding: 15px 20px;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.file-list .file-item .file-name {
  font-weight: bold;
  color: #c9a762;
  word-break: break-all;
}
.file-list .file-item .file-meta {
  font-size: 0.9em;
  color: white;
}
.file-list .file-item .file-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
}
.file-list .file-item .file-actions a,
.file-list .file-item .file-actions form button {
  flex: 1;
  text-align: center;
  background-color: #c9a762;
  color: #212529;
  padding: 6px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
}
.file-list .file-item .file-actions a:hover,
.file-list .file-item .file-actions form button:hover {
  background-color: #d6bc88;
}

.messages {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.messages .message {
  background-color: #1c2023;
  border-left: 4px solid #c9a762;
  padding: 10px 15px;
  border-radius: 6px;
}
.messages .meta {
  font-size: 0.85em;
  color: white;
  margin-bottom: 5px;
}
.messages .text {
  white-space: pre-wrap;
}/*# sourceMappingURL=style.css.map */