/* Feedback in Rust Game Style */
#feedback-question {
    z-index: 1000;
    cursor: pointer;
    user-select: none;
    position: fixed;
    background-color: rgba(108, 83, 70, 0.8); /* Dark, rusty color */
    border: 2px solid #6b4f3e; /* Adding a border to enhance the rugged look */
    border-radius: 0 10px 10px 0;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5); /* Adding shadow for depth */
    top: 20px;
    left: -1000px;
    transition: left 1s;
    font-size: 16px;
    padding: 10px;
    display: flex;
    align-items: center;
    flex-direction: row;
    font-family: "Courier New", monospace; /* Changing font to a typewriter style */
    color: #e0e0e0; /* Lighter color for the text for contrast */
    text-shadow: 1px 1px 2px #000; /* Adding text shadow for a rugged effect */
}

#feedback-question img {
    width: 35px;
    margin-right: 10px;
    filter: grayscale(100%); /* Making the image grayscale for a more worn-out look */
}

/* Adding a metal texture overlay */
#feedback-question::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.2; /* Adjust opacity to not overpower the text */
    border-radius: inherit; /* Match the border radius of the parent */
}

#close
{
    text-align: right;
    cursor: pointer;
    font-size: 30px;
    color: red;
}
#form
{
    position: fixed;
    background-color: #1b1b1b;
    padding: 10px;
    display: flex;
    flex-direction: column;
    left: -50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 10000;
    transition: left 1s;
}
#form * 
{
    font-family: "Bebas Neue",sans-serif;
    user-select: none;
}
#form label
{
    display: flex;
    justify-content: center;
    width: fit-content;
    padding: 5px;
}
#form h2
{
    font-size: 25px;
    width: fit-content;
    margin: auto;
    border-left: gray 2px solid;
    padding: 5px;
    color: #bab1a8;
}
.container
{
    display: flex;
    justify-content: center;
    flex-direction: row;
}
[type=radio] { 
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

[type=radio] + p {
    cursor: pointer;
    width: fit-content;
    font-size: 40px;
}

[type=radio]:checked + p {
    filter: brightness(0.4);
}

[type=radio] + .button {
    cursor: pointer;
    width: fit-content;
}

[type=radio]:checked + .button {
    background-color: rgba(128, 128, 128, 0.347);
}
#form p:hover
{
    filter: brightness(0.4);
}
.button:hover
{
    background-color: rgba(128, 128, 128, 0.347);
}
.button
{
    font-family: "Bebas_Neue";
    font-weight: 700;
    padding: 10px;
    font-size: 20px !important;
    color: #fff;
    border: none;
    width: fit-content;
    background-color: #cd412b;
}
#submit
{
    width: 30%;
    margin: auto;
    margin-top: 10px;
    border: none;
    background-color: #cd412bd0;
    padding: 3px;
    color: rgb(197, 197, 197);
    font-size: 20px;
    font-weight: 600;
}
#submit:hover
{
    background-color: gray;
}
textarea
{
    margin-top: 16px;
    background-color: rgba(0,0,0,.2);
    border: none;
    padding: 2px;
    font-size: 20px;
    color: #e4dad1;
}
form h3 
{
    text-align: center;
    margin: 0 10px;
    font-size: 20px;
    height: fit-content;
}
.line-through-text {
    margin-top: 10px;
    display: flex;
    align-items: center;
    color: #bab1a8;
}
.line {
    flex: 1;
    height: 1px;
    background-color: #bab1a8;
}


/* For filter */
main{
    transition: filter 0.6s;
}