@import url('theme.css');
@import url('layout.css');
@import url('sidebar.css');

/* Base resets or globals if needed, but mostly handled in other files */

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 15% auto;
  padding: 20px;
  border: 1px solid var(--sidebar-border);
  width: 80%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.close-modal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-modal:hover,
.close-modal:focus {
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
}

#help-content h3 {
    margin-top: 15px;
    border-bottom: 1px solid var(--separator-color);
    padding-bottom: 5px;
}
#help-content ul {
    list-style-type: disc;
    padding-left: 20px;
}
