/* 
 * Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
 * See LICENSE in the project root for license information.
 */

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

b {
  font-weight: bold;
}

select {
  padding: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
  align-items: center;
}

.attachment-data {
  display: flex;
  flex-direction: column;
  padding: 5px;
}

.attachment-item {
  display: flex;
  align-items: center;
  padding: 5px;
}

.attachment-checkbox {
  margin-left: 20px;
}

.attachment-label {
  width: 170px; /* Set your desired fixed width */
  word-break: break-all; /* Break long words if needed */
  white-space: normal; /* Allow text to wrap */
  overflow-wrap: break-word;
}

.center-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center; /* horizontal centering */
}

.geminor-img {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 125px;
}

.background-color {
  background: linear-gradient(#fff, #2a773e);
}

/* Checkbox styles */
input[type="checkbox"]:checked {
  accent-color: #15773f; /* Example color: blue */
}

input[type="checkbox"]:hover {
  cursor: pointer; /* Change cursor to pointer on hover */
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 10px; /* Space between checkbox and label */
}

#archiveButton {
  background-color: #254557;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-top: 30px;
  margin-left: 25px;
  border-radius: 5px;
}

#archiveButton:hover {
  outline-color: transparent;
  outline-style: solid;
  box-shadow: 0 0 0 3px #ffff;
  cursor: pointer;
}

select {
  border: 2px solid #1c465c;
  width: 200px;
  padding: 10px 15px;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  background-color: #f3f2f1;
  cursor: pointer;
  margin-bottom: 20px;
  margin-left: 25px;
  margin-top: 20px;
}

select,
::picker(select) {
  appearance: base-select;
}
select:hover {
  border-color: #2a773e;
  box-shadow: 0 0 5px rgba(21, 119, 63, 0.5);
}

option {
  padding: 2px;
}

option:hover {
  background-color: #2a773e;
  color: white;
  cursor: pointer;
}

.link-info {
  margin-top: 50px;
  margin-left: 65px;
  margin-right: 20px;
  font-family: Arial, sans-serif;
}

#archiveButton:disabled {
  background-color: #cccccc !important;
  color: #888888 !important;
  border-color: #cccccc !important;
  cursor: not-allowed;
  opacity: 1;
}
