/* Allgemeines Styling */
body {
    font-family: Arial, sans-serif;
    background: #380078;
    background-size: 800% 800%;
    animation: neonBG 18s ease infinite;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: white;
}



/* Hauptcontainer */
.container, .containercontent{
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px 35px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 90%;
    margin-top: 80px;
}


.containercontent {
    width: 95%;
    max-width: 1600px;
}

.linkcontainer {

    border: 2px solid black;
}

/* Text-Styling */
h1 {
    margin-bottom: 15px;
    font-size: 26px;
    color: #ffffff;
}

p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #d1e0ff;
}

/* Buttons */
.button {
    width: 100%;
    padding: 12px;
    background-color: #4c066f;
    border: 2px solid transparent;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    background-color: #373b9c;
    border-color: white;
}

/* Abstände */
.spacer10px {
    margin: 10px 0;
}

.spacerdiv20, .spacerdiv {
    margin-bottom: 20px;
    height: 25px;
}

/* Tabelle */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    padding: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

table th {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #6d79fc;
}

tr:hover {
    background-color: #87cefa;
}

/* Input-Felder */
.input, select {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 8px 0;
    border: 2px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    background-color: white;
    box-sizing: border-box;
    display: block !important;
    visibility: visible !important;
    transition: all 0.3s ease-in-out;
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

input:focus {
    width: 500px;
    height: 35px;
    padding: 8px;
    box-sizing: border-box;
}

input[type="text"]:focus {
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    outline-offset: 2px;
    border: 2px solid #4e54c8;
    background-color: white;
}

/* Navigations-Buttons */
.top-buttons {
    position: fixed;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 10px;
}

.top-button {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid transparent;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.top-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: white;
}

/* Sonstige Klassen */
.hide {
    display: none;
}

.border {
    border: 2px solid gray;
    border-radius: 15px;
}

.right {
    display: flex;
    justify-content: flex-end;
}
.flexspace{
    justify-content: space-around;
}
.padding20{
    padding: 20px;
}

.select2{
    width: 180px;

}
.flexrow{
    justify-content: space-around;
    display: flex;
    flex-direction: row;
}
.flexcollum{
    justify-content: space-around;
    align-items: center;
    display: flex;
    flex-direction: column;
}


