/* Allgemeine Einstellungen */
body {
    font-family: 'Helvetica', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-image: url('https://cdn.sourcecodeyt.de/styles/dashboard/wallpaper2.png'); /* Dein Hintergrundbild hier */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

/* Container für das Admin Panel */
.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6); /* Dunkler Hintergrund mit Transparenz */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Logo Section */
.logo-container {
    display: flex
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    width: 60%
    position: relative;
}

/* Titel */
h2 {
    font-size: 2em;
    margin-bottom: 10px;
    text-align: center;
}

/* Formular für Dateiübertragung */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

input[type="text"], input[type="file"], button {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    background-color: #222;
    color: white;
}

input[type="text"], input[type="file"] {
    width: 95%;
}

button {
    cursor: pointer;
    background-color: #0070da;
    color: white;
    border: none;
}

button:hover {
    background-color: #004cd8;
}

/* Nachrichten */
.success-message {
    color: #4CAF50; /* Grün für Erfolg */
    font-weight: bold;
}

.error-message {
    color: red;
    font-weight: bold;
}

/* Logout-Link */
.logout-link {
    text-align: center;
    display: block;
    color: #fff;
    text-decoration: none;
    margin-top: 20px;
    padding: 10px;
    background-color: #333;
    border-radius: 5px;
}

.logout-link:hover {
    background-color: #555;
}
.placeholder {
    width: 50%;
    height: auto;
    visibility: hidden;
}
.logo-mask {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translate(-50%);
    width: 10%;
    height: 10%;
    background: linear-gradient(45deg, 
        #ff0000, #ff7f00, #ffff00, #00ff00, 
        #0000ff, #4b0082, #8b00ff, #ff0000);
    background-size: 1000% 1000%;
    mask-image: url('https://cdn.sourcecodeyt.de/styles/dashboard/swisslp_hosting_logo_white.svg');
    -webkit-mask-image: url('https://cdn.sourcecodeyt.de/styles/dashboard/swisslp_hosting_logo_white.svg');
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    animation: gradient 30s ease infinite;
    z-index: 5;
    visibility: visible
}
@keyframes gradient {
   0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
