@keyframes changeColor {
    0% { color: #141414; }
    50% { color: #ff820e; }
    100% { color: #141414; }
}

body {
    margin: 0;
    padding: 0;
    /*
    background-image: url('BG.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-attachment: fixed;
    */
    font-family: 'Poppins', Verdana;
    letter-spacing: 0.03em;
}

/* For modern browsers */
::selection {
    background-color: #1ba17b; 
    color: #ffffff; 
}

/* For Firefox */
::-moz-selection {
    background-color: #1ba17b;
    color: #ffffff; 
}

h1 {
    font-weight: 300;
    letter-spacing: 0.0em;
    color: #1ba17b;
}

.content-container {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    background-color: #fefefe;
    color: #141414;
    border: 1px solid #cecece;
    border-radius: 10px;
    padding: 40px;
    padding-top: 10px;
}

input::selection {
    color: #fff; /* Text color of the selected text */
    background-color: #1ba17b; /* Background color of the selected text */
}

.buttons {
    font-family: 'Poppins', Verdana;
    font-size: medium;
    letter-spacing: 0.07em;
    padding: 15px 25px 15px 25px;
    border-radius: 10px;
    border: none;
    color: #fff;
    background-color: #1ba17b;
    cursor: pointer;
}
.buttons:hover {
    background-color: #111;
    color: #fff;
    cursor: pointer;
}

.buttons.disabled {
    background-color: #daece5; /* Button color when disabled */
    color: #fff;
    cursor: not-allowed;
}

.smallButton {
    font-size: small;
    padding: 0px 15px 0px 15px;
    height: 32px;
    border-radius: 5px;
}

.rollout {
    border: 1px solid #cecece;
    background-color: #fff;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0px;
    color: black;
    cursor: pointer;
    border-radius: 5px;
}

 /* Style for the content that will be hidden initially */
.instructionsContent {
    font-size: small;
    color: black;
}

.arrow {
    position: absolute;
    right: 10px;
    transform: translateY(-100%) translateX(-50px);
    transition: transform 0.2s;
}

/* Style for the arrow icon when the content is visible */
.expanded .arrow {
    transform: translateY(-100%) translateX(-50px) rotate(180deg);
}

.textFields {
    border: 1px solid #cecece;
    border-radius: 5px;
    width: 170px;
    height: 28px;
    font-size: 10pt;
    letter-spacing: 0.03em;
    margin-left: 5px;
    vertical-align: middle;
    padding-left: 8px;
}

.typeFields {
    border: 1px solid #cecece;
    padding-left: 8px;
    border-radius: 5px;
    width: 70px;
    height: 32px;
    font-size: 10pt;
    letter-spacing: 0.03em;
    vertical-align: middle;
}

.typeFieldsSeparator {
    border: 1px solid #cecece;
    border-radius: 5px;
    width: 70px;
    height: 32px;
    font-size: 15pt;
    vertical-align: middle;
    padding-top: 0px;
}

.fieldsHighlight {
    color:#ff820e;
}

.largerText {
    font-size: large;
    font-weight: bold;
    color: #fff;
}

.smallerText {
    font-size: 10pt;
}

.two-column {
    display: flex;
    /*justify-content: center;
    /*align-items: center; /* Center items vertically within the parent */
}

.columnLeft {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly; /* Align items to the start (left) of the column */
    align-items: flex-end; /* Align items to the end (right) of the column */
}

.columnLeftItem {
    display: flex;
    margin-right: 5px;
    height: 45px;
    justify-content: flex-end; /* Align items to the start (left) of the column */
    align-items: center;
}

.columnRight {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align items to the start (left) of the column */
    align-items: flex-start;
}

.columnRightRow {
    display: flex;
    height: 45px;
    max-width: 750px;
    justify-content: flex-start; /* Align items to the start (left) of the column */
    align-items: center;
}

.inputFieldElement {
    flex: 0;
    margin-right: 5px;
}

.inputFieldExampleText {
    white-space: nowrap;
    flex: 1;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 5px;
    text-align: left;
}

.simpleRow {
    display: flex;
    white-space: nowrap;
    justify-content: center;
    align-items: center; /* Center items vertically within the parent */
    margin-bottom: 20px;
}

.exampleRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center; /* Center items vertically within the parent */
    margin-bottom: 20px;
}

.exampleGroup {
    display: flex;
    justify-content: center;
    align-items: center; /* Center items vertically within the parent */
    margin: 5px;
    height: 40px;
    padding: 0px 5px 0px 5px;
    /* border: 2px solid #cecece; */
    background-color: #ff820e;
    border-radius: 15px;
}

.separationElement {
    flex: 0;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    margin: 3px;
}

.separationStyle {
    border: 1px solid #cecece;
    border-radius: 10px;
    color: #000;
    background-color: #fff;
    width: 80px;
    font-size: 10pt;
    letter-spacing: 0.07em;
    padding: 5px;
}

.separationButton {
    display: flex;
    font-family: 'Poppins', Verdana;
    font-size: large;
    font-weight: bold;
    width: 30px;
    height: 30px;
    border: 2px solid #cecece;
    border-radius: 10px;
    color: #000;
    background-color: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.separationButton:hover {
    border: 2px solid #141414;
    background-color: #141414;
    color: #fff;
    cursor: pointer;
}

.separationButtonInner {
    border: none;
    width: 28px;
    height: 28px;
}

.errorButton {
    display: flex;
    font-family: 'Poppins', Verdana;
    font-size: large;
    font-weight: bold;
    width: 30px;
    height: 30px;
    border: 2px solid #cecece;
    border-radius: 10px;
    color: #000;
    background-color: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.errorButton:hover {
    border: 2px solid #141414;
    background-color: #141414;
    color: #fff;
    cursor: pointer;
}

.error {
    animation: changeColor 1s linear infinite;
    font-size: 10pt;
    font-weight: bold;
    margin-top: 20px; 
    margin-bottom: 0px;
}