body{
	background-color: #ededed;
}

h1,h2,h3,h4,h5,h6{
	color:hsl(0, 0%, 30%);
}

.box-element{
	box-shadow:hsl(0, 0%, 80%) 0 0 16px;
	background-color: #fff;
	border-radius: 4px;
	padding: 10px;
}

.thumbnail{
	width: 100%;
	height: 200px;
	-webkit-box-shadow: -1px -3px 5px -2px rgba(214,214,214,1);
    -moz-box-shadow: -1px -3px 5px -2px rgba(214,214,214,1);
    box-shadow: -1px -3px 5px -2px rgba(214,214,214,1);
}

.navbar-light{
	background-color: #ffffff!important;
}

#erbelauf-icon{
	width:100px;
	display: inline-block;
	margin-left: 5px;
}

#impressum{
	display: inline-block;
    color: #9e9e9e;
    text-decoration: none;
}

.navbar-nav #impressum:hover {
    color: rgba(0,0,0,.7);
}

.col-lg-4, .col-lg-6, .col-lg-8, .col-lg-12{
	margin-top: 10px;
}

.btn{
	border-radius: 0;
}

.row-image{
	width: 100px;
}

.form-field{
	width:250px;
	display: inline-block;
	padding: 5px;
}

.hidden{
	display: none!important;
}

.nav-item a.nav-link:hover{
	color: black;
}

.nav-item a.nav-link{
	color: #9e9e9e;
}

#international-athlete {
	text-align: center;
}

#parent {
	align-items: center;
    justify-content: center;
}

.on-click-a:hover{
	text-decoration: underline!important;
	cursor: pointer!important;
}

/* Grundlayout */
.form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    margin-bottom: 1em;
}

.form-field {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
    min-width: 200px;
}

.form-field label {
    width: 180px;
    margin-right: 0.5em;
}

.form-field input,
.form-field select,
.form-field textarea {
    flex: 1;
}

.scrollbox {
    border: 1px solid #ccc;
    padding: 1em;
    height: 150px;
    overflow-y: scroll;
    background-color: #f9f9f9;
    font-size: 0.9em;
    line-height: 1.4;
    width: 100%;
}

.checkbox-left {
    flex-direction: row;
    align-items: center;
}

.checkbox-left label {
    margin-left: 0.5em;
    width: auto;
}

.checkbox-field label {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-weight: normal;
}

/* Unterschrift */
.signature-field {
    flex-direction: column;
    align-items: flex-start;
}

.signature-field canvas {
    width: 100% !important;
    height: 200px !important;
    border: 1px solid #ccc;
    margin-bottom: 0.5em;
}

#sig-reset {
    padding: 0.5em 1em;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}

#sig-reset:hover {
    background-color: #ddd;
}

/* Mobilanpassung */
@media (max-width: 600px) {
    .form-group {
        flex-direction: column;
    }

    .form-field {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .form-field label {
        width: auto;
        margin-bottom: 0.3em;
    }

    .form-field input,
    .form-field select,
    .form-field textarea,
    .scrollbox,
    .signature-field canvas {
        width: 100% !important;
        max-width: 100%;
    }

    .checkbox-left {
        flex-direction: row;
        align-items: center;
    }
}