body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f6fa;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 600px;
    margin: 20px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    margin-bottom: 24px;
    font-size: 24px;
    color: #333;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

input[type="text"],
input[type="file"] {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff; /* Primär färg */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #0056b3;
}

#downloadLink {
    display: inline-block;
    margin-top: 16px;
    font-size: 16px;
    color: #007bff;
    text-decoration: none;
}

#downloadLink:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 16px;
    margin-right: 16px;
}

#output,
#swishOutput {
    margin-top: 20px;
}

#output p,
#swishOutput p {
    margin: 0 0 8px;
    color: #333;
}

#output ul,
#swishOutput ul {
    list-style-type: disc;
    margin-left: 20px;
}

#output ul li,
#swishOutput ul li {
    margin-bottom: 4px;
    color: #e74c3c; /* Färg för felmeddelanden */
}

#filteredOutput {
    margin-top: 20px;
    max-height: 400px; /* Begränsa höjden för att möjliggöra scrollning */
    overflow-y: auto; /* Lägg till scrollning om innehållet är för stort */
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
}