body {
    background-color: #e6f2ff; /* Helleres Blau statt Türkis */
    margin: 0;
    height: 100vh;
    width: 100vw;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1 {
    color: #2c3e50; /* Dunkleres Blau-Grau für bessere Lesbarkeit */
    padding-top: 35px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

h2, h3 {
    font-size: 25px;
    font-weight: bold;
    color: #3498db; /* Frisches Blau für Überschriften */
    margin-bottom: 25px;
}

p {
    margin-top: 5px;
    margin-bottom: 15px;
    hyphens: auto;
    text-align: justify;
    color: #34495e; /* Dunkleres Blau-Grau für Text */
}

.btn-primary {
    width: 220px;
    background-color: #2980b9; /* Kräftiges Blau */
    border: none;
    padding: 10px 20px;
    transition: all 0.3s;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background-color: #3498db; /* Helleres Blau beim Hovern */
    transform: translateY(-1px);
}

.card {
    background-color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2); /* Blauer Schatten */
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

#imageContainer, #ocrImageContainer {
    max-width: 200px;
    height: auto;
    display: block;
    margin-top: 25px;
    box-shadow: 3px 3px 10px rgba(41, 128, 185, 0.4); /* Blauer Schatten */
    border-radius: 4px;
    transition: transform 0.3s;
}

#imageContainer:hover, #ocrImageContainer:hover {
    transform: scale(1.02);
}

textarea, input[type="text"], input[type="file"] {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    padding: 8px;
    transition: border-color 0.3s;
}

textarea:focus, input[type="text"]:focus, input[type="file"]:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.enhanced-image {
    width: 650px;
    height: auto;
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
    transition: all 0.3s;
}

.enhanced-image:hover {
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}