* {
    font-family: 'Cascadia Code','Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}

body {
    background-color: #292929;
    display: flex;
    align-items: center;
    justify-content: center;
}

button {
    background-color: #5c5c5c;
    border: none;
    color: white;
    padding: 12px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8rem;
}

.button {
    background-color: #5c5c5c;
    border: none;
    color: white;
    padding: 12px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8rem;
}

a {
    color: #4a90e2;
    text-decoration: none;
}

.main-container {
    width: 68.1%;
    padding: 2rem;
}

.container {
    background-color: #4444445b;
    border-radius: 1rem;
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
}

.card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #4444445b;
  border-radius: 1rem;
  padding: 1rem;
  max-width: 29.2%;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.container .card {
    display: inline-flex;
}

.card:hover {
  background-color: #55555580;
}


.icon {
  font-size: 3rem;
  line-height: 1;
  flex-shrink: 0;
}


.content h3 {
  margin: 0 0 0.25rem 0;
}

.content p {
  margin: 0 0 0.75rem 0;
  color: #bbbbbb;
}



.seperator {
    height: 1px;
    background-color: #444;
    margin: 1rem 0;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.passgen-output {
    width: 95%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background-color: #555;
    color: white;
    font-size: 1.2rem;
    box-sizing: border-box;
}

.minimal-btn {
    background-color: transparent;
    color: #4a90e2;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: underline;
    padding: 0;
}

.settings {
  margin-bottom: 1rem;
}

.settings label {
  display: block;
  margin: 0.3rem 0;
}

.password-eye {
    width: 32px;
    height: 32px;
    cursor: pointer;
    filter: brightness(0) invert(1);
    bottom: 100%;
    transform: translateY(25%);
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

input[type="number"] {
    background-color: #555;
    width: 60px;
    padding: 5px;
    border: none;
    border-radius: 4px;
}

input[type="text"], input[type="url"], input[type="email"], input[type="password"] {
    padding: 10px;
    border: none;
    border-radius: 8px;
    background-color: #555;
    color: white;
    font-size: 1.2rem;
    box-sizing: border-box;
}
select {
    padding: 10px;
    border: none;
    border-radius: 8px;
    background-color: #555;
    color: white;
    font-size: 1.2rem;
    box-sizing: border-box;
}

textarea {
    width: 95%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background-color: #555;
    color: white;
    font-size: 1.2rem;
    box-sizing: border-box;
}

textarea.onlydown {
    height: 200px;
    resize: vertical;
}

.half-width {
    width: 50%;
}

.full-width {
    width: 100%;
}

nav[aria-label="breadcrumb"] {
  margin: 0.5em 0 1em 0;
}

nav[aria-label="breadcrumb"] ol {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

nav[aria-label="breadcrumb"] li {
  display: flex;
  align-items: center;
}

nav[aria-label="breadcrumb"] li:not(:last-child)::after {
  content: "/";
  margin: 0 0.5em;
  color: #999;
}

nav[aria-label="breadcrumb"] li a {
  color: #4a90e2;
  text-decoration: none;
}

nav[aria-label="breadcrumb"] li a:hover {
  text-decoration: underline;
}


.blue {
    background-color: #4a90e2;
}
.orange {
    background-color: #f39c12;
}
.green {
    background-color: #2ecc71;
}
.red {
    background-color: #e74c3c;
}
.yellow {
    background-color: #f1c40f;
}
.purple {
    background-color: #9b59b6;
}
.gray {
    background-color: #7f8c8d;
}