/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

body {
  font-size: 1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
}

a {
  text-decoration: none;
}

strong {
  font-weight: 600;
}

/* End Reset Style Sheet */

body {
  font-family: Arial, sans-serif;
}

.container {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 25%;
  height: 100%;
  padding: 1rem;
  background-color: white;
}

.title {
  font-size: 1.875rem;
  font-weight: bold;
}

.dropdown {
  margin-top: 1rem;
}

.dropdown-select {
  border: 1px solid #ccc;
  padding: 0.5rem;
  border-radius: 0.25rem;
  width: 100%;
}

.main-content {
  width: 75%;
  background-color: #e5e7eb;
  padding: 2.5rem;
}

.inner-content {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.first-bar {
  display: flex;
  flex-direction: row;
  padding: 1rem;
  background-color: #4a515d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem 0.5rem 0 0;
}

.circle {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.second-bar {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  color: white;
  background-color: #4a515d;
}

.mail-content {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background-color: white;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  gap: 2rem;
}

.ghost-line {
  height: 10px;
  background-color: #e0e0e0;
  margin-bottom: 1rem;
}

.signature-container {
  padding-top: 1rem;
}

.bold {
  font-weight: bold;
}

.large {
  font-size: 14pt;
  line-height: 14pt;
  padding-bottom: 2pt;
}

.small {
  font-size: 10pt;
  line-height: 10pt;
  padding-bottom: 2.5pt;
}

.red {
  color: rgb(192, 33, 37);
}

a {
  text-decoration: none !important;
}

.form-control {
  display: flex;
  flex-direction: column;
}

.label {
  display: flex;
  -webkit-user-select: none;
  user-select: none;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.25rem;
}

.label-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: var(--fallback-bc, oklch(var(--bc) / var(--tw-text-opacity)));
}

.input {
  flex-shrink: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 2.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1rem;
  line-height: 2;
  line-height: 1.5rem;
  border-radius: var(--rounded-btn, 0.5rem);
  border-width: 1px;
  border-color: transparent;
  border: 1px solid #ccc;
}

.select {
  display: inline-flex;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 2.5rem;
  min-height: 2.5rem;
  padding-inline-start: 1rem;
  padding-inline-end: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 2;
  border-radius: var(--rounded-btn, 0.5rem);
  border-width: 1px;
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b1, oklch(var(--b1) / var(--tw-bg-opacity)));
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1px + 50%), calc(100% - 16.1px) calc(1px + 50%);
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
}

.select-bordered {
  border: 1px solid #ccc;
}

.btn {
  cursor: pointer;
  height: 3rem;
  min-height: 3rem;
  padding-inline: 1rem;
  border-radius: 5px;
  border: none;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: oklch(0.932996 0.010389 261.788);
}

.btn:hover {
  background-color: oklab(0.839696 -0.00133545 -0.00925424);
}

.btn-primary {
  background-color: oklch(0.594359 0.077246 254.028);
}

.w-full {
  width: 100%;
}
