@font-face {
  font-family: "Nunito";
  src: url("lib/fonts/Nunito/Nunito-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900; /* Adjust as needed for variable fonts */
  font-style: normal;
}
a {
  all: unset;
  text-decoration: underline;
}

button {
  background-color: rgb(218, 218, 218);
  color: rgb(37, 37, 37);
  border: 0;
  margin: 0px 0 2px 0;
  padding: 0.2em;
}

button:hover {
  background-color: white;
}

button:disabled {
  background-color: rgb(126, 126, 126);
}

.search-presets {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.7em;
}
.search-presets .body {
  margin-left: 0.5em;
}
.search-presets button {
  font-size: 14px !important;
  height: auto !important;
  min-height: unset !important;
  line-height: normal !important;
}

.recipient {
  margin-right: 1em;
}

.copying {
  background-color: red;
}

.id-cell {
  max-width: 3em !important;
  width: 3em;
  overflow: hidden; /* Hide the overflowing content */
  white-space: nowrap; /* Prevent wrapping to the next line */
}

.merge-cell {
  padding-bottom: 1em;
}

.search_meta {
  margin-right: 1em;
}

.send-messages-block {
  background-color: rgb(10, 10, 10);
  margin-bottom: 1.5em;
  padding: 1em;
}

.template-select-block {
  padding-right: 0.5em;
}
.template-select-block > div {
  display: flex;
}
.template-select-block > div.selected {
  background-color: rgb(76, 76, 76);
}
.template-select-block > div.selected input:not(:disabled) {
  background-color: rgb(218, 218, 218);
}
.template-select-block > div.selected input:disabled {
  background-color: rgb(76, 76, 76);
}
.template-select-block > div > button {
  margin-right: 1px;
}
.template-select-block input {
  border: 0;
  margin-right: 0.5em;
  width: 13em;
}
.template-select-block input:disabled {
  background-color: rgb(10, 10, 10);
  color: rgb(218, 218, 218);
  pointer-events: none;
}

.message-writing-block {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 1em;
}
.message-writing-block .message-area {
  width: 27em;
}
.message-writing-block .message-editor, .message-writing-block .message-viewer, .message-writing-block .dropzone {
  width: 100%;
}
.message-writing-block .message-editor, .message-writing-block .message-viewer {
  min-height: 7em;
}
.message-writing-block .dropzone {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  height: 4em;
  background-color: rgb(76, 76, 76);
  background-image: url("/lib/assets/cloud-upload-1.png"); /* Your transparent PNG */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 2px dotted rgb(126, 126, 126);
  box-sizing: border-box;
  margin: 2px 0 0 0;
  display: flex;
  padding: 0.5em 0 0 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.message-writing-block .dropzone:hover {
  background-color: rgb(10, 10, 10);
  border-color: rgb(246, 246, 246);
}
.message-writing-block .dropzone .img-div {
  position: relative;
  max-height: 100%;
}
.message-writing-block .dropzone .img-div img {
  width: 80px;
  height: auto; /* ensures it keeps original proportions */
  max-height: 100%; /* if you want to constrain it to the container */
  -o-object-fit: contain;
     object-fit: contain; /* extra safeguard, if you want the entire image visible */
}
.message-writing-block .dropzone .img-div button {
  top: -0.5em;
  right: -0.5em;
  position: absolute;
  color: rgb(218, 218, 218);
  background-color: transparent !important;
  border: 0 !important;
  font-size: 1.5em;
}
.message-writing-block .dropzone .img-div button:hover {
  color: rgb(246, 246, 246);
}
.message-writing-block .message-editor, .message-writing-block .dropzone {
  margin-right: 0;
}
.message-writing-block .message-viewer {
  background-color: rgb(37, 37, 37);
  margin: 0;
}

.message-lower-buttons-block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.5em;
  margin: 2px 0 0 0;
}
.message-lower-buttons-block button {
  padding: 0.5em 0.2em 0.5em 0.2em;
  border-radius: 3px;
}

body {
  background-color: rgb(37, 37, 37);
  color: rgb(218, 218, 218);
  font-family: "Nunito";
  input-background-color: rgb(218, 218, 218);
  input-color: rgb(37, 37, 37);
  input-border: 0;
  input-border-radius: 3px;
}

.bulk-messages-main {
  display: flex;
}
.bulk-messages-main .searches {
  display: flex;
  flex-direction: column;
  width: 15em;
}
.bulk-messages-main .searches label {
  margin-left: 1em;
}
.bulk-messages-main .searches button {
  padding: 0.3em;
  margin: 0.12em;
  font-size: 1.2em;
}
.bulk-messages-main .searches button:hover {
  background-color: rgb(246, 246, 246);
}
.bulk-messages-main .searches button:disabled {
  background-color: rgb(126, 126, 126);
}
.bulk-messages-main .results {
  flex-grow: 1;
}
.bulk-messages-main .results #search-results-table {
  table-layout: fixed;
}
.bulk-messages-main .results #search-results-table td {
  max-width: 15em;
  overflow: hidden;
  vertical-align: top;
}
.bulk-messages-main .results #search-results-table .first_name {
  max-width: 10em;
}
.bulk-messages-main .results #search-results-table .last_name {
  max-width: 10em;
}
.bulk-messages-main .results #search-results-table #search_results_body tr:hover {
  background-color: rgb(10, 10, 10);
}
.bulk-messages-main .duplicates-block {
  margin-bottom: 1em;
}
.bulk-messages-main .duplicates-block .duplicates_table > tr:nth-child(odd) {
  background-color: rgb(10, 10, 10);
}/*# sourceMappingURL=bulk-messages.css.map */