* {
	box-sizing: border-box;
/*	margin: 0;
	padding: 0;
*/    
}

html,
body {
	font-family: Verdana, sans-serif;
	font-size: 14px;
	line-height: 1.5;
}

img {
	max-width: 100%;
	height: auto;
}

ul {
	list-style-type: none;
}

.message {
	display: flex;
	gap: 10px;
	height: 20px;
}

.message img {
	width: 20px;
}

.title {
	color: #61219d;
	font-size: 18px;
	font-weight: bold;
}

input.readonly {
	background-color: #EEEEEE;
}

input.valerror {
	color: red;
}

button:hover {
	cursor: pointer;
}

.modal-container {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    justify-content: center;
    align-items: center;
}

.modal-menu-bar {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.modal-content-delete {
    background: white;
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 400;
}
/* Wrapper für input tpye file*/
.upload-wrapper {
	position: relative;
	display: inline-block;
}

/* Das echte Input-Feld verstecken (wichtig!) */
.file-input {
	opacity: 0;
	position: absolute;
	z-index: -1;
}

/* menü */
.menu-bar {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 5px;
}

.menu-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	/* Abstand zwischen Icon und Text */
	padding: 8px 16px;
	border: 1px solid #ccc;
	border-radius: 4px;
	cursor: pointer;
	white-space: nowrap;
	font-size: 14px;
    background-color: white;
}

.menu-btn:hover {
	background-color: #d9d7e0;
	border-color: #aaa;
	transform: translateY(-2px) scale(1.05);
}

.menu-btn:active {
	background-color: #d0d0d0;
}

.menu-btn-ico {
	border: none;
	background-color: transparent;
	cursor: pointer;
	width: 45px;
}

.menu-btn-ico:hover {
	background-color: #eaeaea;
}
