@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Questrial&display=swap');

:root {
    --box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

* {
    box-sizing:  border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  
}

.container {
    margin: 30px auto;
    width: 900px;
}

.form-control {
    display: flex;
    align-items: center;
    margin-bottom: 10px;

  
}

.form-control label {
    width: 120px;
    font-weight: bold;
}

.form-control input,
.form-control select {
    flex: 1;
    padding: 5px;
    margin: 0 5px;
}

.output-control {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    vertical-align:top;
}

.output-control-vertical {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
}

.output-control label {
    width: 120px;
    font-weight: bold;
}

.output-control input,
.output-control select,
.output-control textarea {
    flex: 1;
    padding: 5px;
    margin: 0 5px;
}

.guestmode-on {
    display: inline;

}

.guestmode-off {
    display: none;
}


label {
    display: inline-block;;
    margin: 5px 0;
}

button {
    cursor: pointer;
}

#hashTags {
    margin: 10px 0;
}

.copy-btn {
  position: relative;
  margin: 10px 5px;
}

#panel#button {
    color: blueviolet;
}

#panel {
  display: flex;
  flex-direction: column;

}

.ta {
    width: 100%;
    min-height: 160px;
}

.htList {
    list-style-type: none;
}

.col1 {
    display: inline-block;
    width: 150px;
}

.colTag{
    display: inline-block;
    width: 450px;
}

.colDetail {
    display: inline-block;
    width: 100px;
    text-align: right;
    margin-left: 10px;
}

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

.spacer {
    width: 5px;
    display: inline-block;
}

.controlSpacer {
    width: 255px;
    display: inline-block;
}

.columnHeader {
    font-weight: bold;
}


#htLimit {
    width: 50px;
}

.taContainer {

}

.taDescription {
    min-height: 100px;
    resize: none; /* Disable manual resize */
    overflow: hidden;
    box-sizing: border-box;
}

.description-container {
    display: block;
}

.descriptionOutput {
    display: inline-block;
    width: fit-content;
    max-width: 600px; /* Force it to wrap at a reasonable width */
    white-space: normal; /* Allow normal text wrapping */
    word-break: break-word; /* Break long words */
    overflow-wrap: break-word; /* Better browser support */
}

.colNotesDiv {
    
    
    max-width: 600px; /* Force it to wrap at a reasonable width */
    white-space: normal; /* Allow normal text wrapping */
    word-break: break-word; /* Break long words */
    overflow-wrap: break-word; /* Better browser support */
}

.verticalSpacer {
    height: 150px;
}



.form-group {
  display: flex;         /* puts them in a row */
  gap: 1rem;             /* spacing between items */
}

.checkbox-item {
  display: flex;         /* keeps input + text aligned */
  align-items: center;
  cursor: pointer;
}





/* The "Copied!" message (hidden by default) */
.copy-btn.copied::after {
  content: "Copied!";
  position: absolute;
  top: 50%;
  left: 110%;
  transform: translateY(-50%);
  color: green;
  font-size: 0.9em;
  opacity: 0;
  animation: fadeout 1.5s forwards;
}

/* Fade-out animation */
@keyframes fadeout {
  0%   { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; }
}