body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

/* Zentrale Box fÃ¼r alle Seiten */
.container, .login-box { 
    max-width: 1200px;
    margin: 20px auto;
    background: #9C9C9C;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    padding: 32px 20px;
    text-align: center;
    box-sizing: border-box;
}


.zuruck-link {
    display: inline-block;
    margin-left: 20px;
    padding: 8px 15px;
    background-color: #CB6CE6;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

/* Responsive Grid fÃ¼r Tickets */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Karten fÃ¼r Verwaltung */
.card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: #333;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Formulare */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 1em;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.9);
}

textarea {
    height: 150px;
    resize: vertical;
}

/* Buttons */
button {
    width: 100%;
    background: #CB6CE6;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    margin-top: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #31125f;
}

.zuruck-link:hover {
    background: #31125f;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-top: 10px;
    font-weight: bold;
}


/* Action Buttons */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.action-buttons button {
    flex: 1;
    min-width: 120px;
}

/* Suchfeld */
.search-container {
    margin: 20px auto;
    max-width: 600px;
}

.search-container input {
    width: 100%;
    padding: 12px;
    border: 2px solid #9C9C9C;
    border-radius: 6px;
    font-size: 16px;
    background: white;
}

/* Ticket Details */
.ticket-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.ticket-details h2 {
    color: white;
    margin-bottom: 20px;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 20px;
    }

    .header {
        flex-direction: column;
        gap: 10px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons button {
        width: 100%;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .container {
        margin: 5px;
        padding: 15px;
    }

    .ticket-details {
        padding: 15px;
    }
}

@media (min-width: 700px) {
    .container {
        max-width: 1800px;
        padding: 20px;
        text-align: left;
    }
}

