/* Reset default margin and padding */
body, html {
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light gray background for contrast */
}

.full-screen {
    min-height: 100vh;
}

.container, .container-fluid {
    padding-top: 1%;  /* Reduced the padding */
    padding-bottom: 1%;  
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0%;  /* Reduced margin for the main title */
    color: #333;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1%;  /* Reduced margin for the subtitles */
    color: #555;
}

.img-fluid {
    max-width: 80%; /* Don't let the image take up the whole width */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* A subtle shadow around images */
}

.form-control, textarea {
    margin-top: 1rem;
    border-radius: 5px; /* Rounded corners */
    border: 1px solid #ccc; /* Subtle border color */
}

.btn {
    /* background-color: #007BFF; Bootstrap primary color */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow to elevate button */
    transition: background-color 0.3s, transform 0.3s; /* Transition for smooth hover effect */
}

.btn:hover {
    background-color: #0056b3; /* Darken button color on hover */
    transform: translateY(-2px); /* Slightly lift the button */
    box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.2); /* Increased shadow for 'lifted' effect */
}

.btn:active {
    transform: translateY(0); /* Reset button position when clicked */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Reset shadow when clicked */
}

.btn-success:hover {
    background-color: #1c7832 !important;
}

.btn-orange, .btn-orange:active {
    background-color: rgb(252, 103, 3) !important;
}

.btn-orange:hover {
    background-color: rgb(220, 91, 6) !important;
}

body, html {
    font-family: 'Roboto', sans-serif; /* Wechsel zu Google Fonts Roboto für bessere Lesbarkeit */
    line-height: 1.6; /* Erhöht die Zeilenhöhe für bessere Lesbarkeit */
    color: #333; /* Dunklerer Text für bessere Lesbarkeit auf hellen Hintergründen */
}

p {
    padding: 0.5rem 0; /* Fügt vertikales Padding zu <p> hinzu */
    font-size: 1rem;
    color: #555; /* Etwas leichterer Textfarbton für bessere Lesbarkeit */
}

h1, h3 {
    font-weight: 400; /* leichter Schriftschnitt für Überschriften */
}

/* Einheitliche Abstände für Container und Container-Flüssigkeit */
.container, .container-fluid {
    padding: 2% 1%;
}

/* Leichte Schattierung für Textbereiche */
.form-control, textarea {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Überarbeitung des Hover-Effekts für den Button */
.btn:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Hinzufügen von Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

#context_output {
    align-self: stretch;  /* Erzwingt, dass das textarea-Element die gesamte Breite des Elternelements einnimmt */
}