.edit {
    font-family: Poppins;
    text-align: center;
    padding: 2px;
    margin: 2px;
    background-color: gold;
    border: 3px DarkGoldenRod;
    border-bottom-style: solid;
    border-radius: 5px;
}

.delete {
    font-family: Poppins;
    text-align: center;
    padding: 2px;
    margin: 2px;
    background-color: tomato;
    border: 3px maroon;
    border-bottom-style: solid;
    border-radius: 5px;
}

.noAction {
    font-family: Poppins;
    text-align: center;
    padding: 2px;
    margin: 2px;
    background-color: grey;
    border: 3px #494747;
    border-bottom-style: solid;
    border-radius: 5px;
}

.goingButton {
    font-family: Poppins;
    text-align: center;
    padding: 2px;
    margin: 2px;
    background-color: DodgerBlue;
    border: 3px Navy;
    border-bottom-style: solid;
    border-radius: 5px;
}


.joinButton {
    font-family: Poppins;
    text-align: center;
    padding: 2px;
    margin: 2px;
    background-color: PaleGreen;
    border: 3px SeaGreen;
    border-bottom-style: solid;
    border-radius: 5px;
}

.boxText {
    font-family: Poppins;
    border: 2px solid black;
    background-color: green;
    padding: 10px;
    width: fit-content;

    .sButton
;
}

.redBox {
    border: 2px solid rgb(183, 50, 20);
    background-color: rgb(255, 227, 227);
    color: rgb(183, 50, 20);
    padding: 10px;
    width: fit-content;
    border-radius: 6px;
    max-width: 450px;
    margin-top: 30px
}

.yellowBox {
    border: 2px solid rgb(255, 162, 0);
    background-color: rgb(255, 231, 143);
    color: rgb(255, 162, 0);
    padding: 10px;
    width: fit-content;
    max-width: 450px;
    border-radius: 6px;
    margin-top: 30px
}

.blueBox {
    border: 2px solid #1100ff;
    background-color: #89a8ff;
    color: #1100ff;
    padding: 10px;
    width: fit-content;
    border-radius: 6px;
    margin-top: 30px
}

.pad {
    border-spacing: 10px
}

.wideBlock {
    padding-left: 50px;
}

.sButtons {
    align-content: end;
    display: flex;
    gap: 10px
}

.navbar-nav {
    flex: max-content;
}

.fButton {
    font-family: Poppins;
    text-align: center;
    padding: 10px 16px; /* Increased padding for better visibility */
    margin: 10px 0px;
    border: 3px solid gold; /* Ensuring the border is solid */
    background-color: gold; /* Add a background color to match the border */
    color: black; /* Text color to ensure readability */
    font-weight: bold;
    border-radius: 8px; /* Slightly larger border-radius for a softer feel */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow to make it stand out */
    transition: transform 0.2s, box-shadow 0.2s; /* Add transition for hover effect */
}

.fButton:hover {
    transform: scale(1.05); /* Slightly increases size on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Enhances the shadow on hover */
    cursor: pointer;
}

.button-box {
    width: 350px;
    margin: 5px auto;
    position: relative;
    background: #fff
}

.toggle-btn {
    padding: 10px 40px;
    cursor: pointer;
    background: transparent;
    border: 0;
    outline: none;
    position: relative;
    text-align: center;
}

.response-container3 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-family: Poppins;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.button-container3 {
    display: flex;
    justify-content: space-around;
    width: 200px;
    border-radius: 25px;
    border: 2px solid gray;
    padding: 2px;
    background-color: #ccc;
}

.button3 {
    width: 100px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    border: none;
}


.neutral {
    background-color: white;
    color: #949494;
    border-style: solid;
    border-top: 0cm;
    border-bottom: 0cm;
    border-color: #ccc;
}

.yes {
    background-color: white;
    color: #28a745;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.no {
    background-color: white;
    color: #dc3545;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.noBlue {
    background-color: white;
    color: #342aec;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.selectedYes {
    background-color: #28a745;
    color: white;
}

.selectedNo {
    background-color: #dc3545;
    color: white;
}

.selectedNeutral {
    background-color: #949494;
    color: white;
}

.selectedNoBlue {
    background-color: #342aec;
    color: white;
}

#btn {
    left: 0;
    top: 0;
    position: absolute;
    width: 180px;
    height: 100%;
    background: coral;
    border-radius: 50px;
    transition: .5s;
}

.changeable-header:before {
    content: attr(data-full-text);
}

@media (min-width: 1000px) {
    .sButton {
        font-family: Poppins;
        text-align: center;
        padding: 2px;
        margin: 2px;
        font-weight: bold;
        border-radius: 5px;
        border: inherit;
        background: linear-gradient(to bottom, #33ccff 0%, #9966ff 100%);
    }

    .nav-link {
        color: black;
        font-size: medium;
    }

    .icon {
        height: 100%;
        max-height: 40px;
        aspect-ratio: 1 / 1;
        vertical-align: middle; /* Zarovnání vevnitř tlačítka */
        pointer-events: none; /* Zajistí, že kliknutí na obrázek funguje přes odkaz */
    }

    .mainH {
        margin: 60px 0 0 0;
        font-weight: 600;
        font-size: 140px;
        font-family: Poppins;
        font-style: italic;
    }

    .mainH3 {
        font-family: Poppins;
        margin: 60px;
    }

    th, td {
        font-family: Poppins;
        border: solid 2px lightgray;
        text-align: center;
    }

    .container {
        max-width: none;
    }

    .form {
        border: 2px lightgray solid;
        border-bottom: 5px deepskyblue solid;
        align-items: center;
        text-anchor: middle;
        border-radius: 5px;
        flex-wrap: wrap;
        width: fit-content;
        max-width: 450px;
        padding: 10px;
    }

    textarea {
        display: block;
        width: 100%;
        overflow: hidden;
        resize: vertical;
        min-height: 40px;
        line-height: 20px;
    }

    .formCover {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    label {
        text-align: left;
        padding: 10px 0 0 0;
    }

    input {
        text-align: left;
        padding: 0;
        margin: 0;
    }

    .button2 {
        width: 100px;
        padding: 10px;
        text-align: center;
        cursor: pointer;
        border: none;
    }

    .response-container2 {
        display: flex;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
        font-family: Poppins;
        text-transform: capitalize;
    }

    .button-container2 {
        display: flex;
        justify-content: space-around;
        width: 300px;
        border-radius: 25px;
        border: 2px solid gray;
        padding: 2px;
        background-color: #ccc;
    }
}

@media (max-width: 999.98px) {
    .sButton {
        font-family: Poppins;
        text-align: center;
        padding: 2px;
        margin: 2px;
        font-weight: bold;
        border-radius: 5px;
        border: inherit;
        background: linear-gradient(to bottom, #33ccff 0%, #9966ff 100%);
    }

    .container {
        max-width: none;
        padding-left: 10px;
        padding-right: 10px;
    }

    .nav-link {
        color: black;
        font-size: 12px;
    }

    .icon {
        height: 100%;
        max-height: 25px;
        aspect-ratio: 1 / 1;
        vertical-align: middle; /* Zarovnání vevnitř tlačítka */
        pointer-events: none; /* Zajistí, že kliknutí na obrázek funguje přes odkaz */
    }

    .mainH {
        margin: 60px 0 0 0;
        font-weight: 600;
        font-size: 80px;
        font-family: Poppins;
        font-style: italic;
    }

    .mainH3 {
        font-family: Poppins;
        font-size: 20px;
        margin: 20px;
    }

    th, td {
        font-family: Poppins;
        border: solid 2px lightgray;
        text-align: center;
        font-size: 12px;
    }

    .form {
        border: 2px lightgray solid;
        border-bottom: 5px deepskyblue solid;
        align-items: center;
        text-anchor: middle;
        border-radius: 5px;
        flex-wrap: wrap;
        width: fit-content;
        max-width: 450px;
        padding: 10px;
    }

    textarea {
        display: block;
        width: 100%;
        overflow: hidden;
        resize: vertical;
        min-height: 40px;
        line-height: 20px;
    }

    .formCover {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    label {
        text-align: left;
        padding: 10px 0 0 0;
    }

    input {
        text-align: left;
        padding: 0;
        margin: 0;
    }

    h1 {
        font-size: 25px;
    }

    .button2 {
        width: 90px;
        padding: 10px;
        font-size: 15px;
        text-align: center;
        cursor: pointer;
        border: none;
    }

    .response-container2 {
        display: flex;
        align-items: center;
        justify-content: left;
        text-transform: uppercase;
        font-family: Poppins;
        text-transform: capitalize;
    }

    .button-container2 {
        display: flex;
        justify-content: space-around;
        width: 270px;
        border-radius: 25px;
        border: 2px solid gray;
        padding: 2px;
        background-color: #ccc;
    }

    .changeable-header:nth-child(3):before {
        content: "✉️"; /* Pozváno */
    }

    .changeable-header:nth-child(4):before {
        content: "✅"; /* Přijali */
    }

    .changeable-header:nth-child(5):before {
        content: "❌"; /* Odmítli */
    }

    .changeable-header:nth-child(6):before {
        content: "🤷‍♂️"; /* Neodpověděli */
    }

}

.ss {
    justify-content: left;
}

.mainText {
    font-family: Poppins;
    margin: 20px;
}

.error {
    border: 2px solid rgb(183, 50, 20);
    background-color: rgb(255, 227, 227);
    color: rgb(183, 50, 20);
    padding: 10px;
}

.warning {
    border: 2px solid rgb(255, 162, 0);
    background-color: rgb(255, 231, 143);
    color: rgb(255, 162, 0);
    padding: 10px;
}

.info {
    border: 2px solid rgb(0, 7, 153);
    background-color: rgb(141, 144, 201);
    color: rgb(0, 7, 153);
    padding: 10px;
}

.navbar {
    font-family: Poppins;
}

.tableBle {
    font-family: Poppins;
    border: solid 2px lightgray;
    border-collapse: collapse;
    align-self: center;
    width: 100%;
    align-content: stretch;
    margin-bottom: 20px;
}

.arrow {
    font-size: 24px;
    margin-left: 0;
}

.wasThere {
    background-color: palegreen;
}

.notThere {
    background-color: #ff8786;
}

.notCare {
    background-color: #949494;
}

.greenAttn {
    background-color: palegreen;
}

.yellowAttn {
    background-color: #ffff95;
}

.redAttn {
    background-color: #ff8786;
}

.noAttn {
    background-color: #949494;
}

.invisTable {
    border: white 0px solid;
}

.redStar {
    color: red;
}

.clickable {
    text-align: center;
    cursor: pointer;
}

.invButtGroup {
    width: 100%;
    border: #dc3545 10px;
    display: flex;
}

.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: inline-block;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div:hover {
    /*when hovering an item:*/
    background-color: #e9e9e9;
}

.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}


.formatButton {
    padding: 5px 10px;
    font-size: 14px;
    background-color: #eeeeee;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}

.formatButton:hover {
    background-color: #ddd;
}

.preview {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background-color: #fefefe;
    font-family: 'Segoe UI', sans-serif;
    text-align: left;
    transition: all 0.3s ease;
}

.textPreview {
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 4px solid gold;
    font-size: 1rem;
    line-height: 1.6;
    white-space: pre-wrap;
    color: #333;
    margin-bottom: 20px;
}

.popDiv {
    max-width: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.popText {
    flex: 0 0 auto;
    max-width: 100%;
    margin-left: 10px;
    overflow-wrap: break-word;
}

.popButton {
    flex: 0 0 auto;
    margin-left: 10px;
}