body {
	font-family: Arial, sans-serif;
}
.wrapper {
	cursor: default;
}
.container {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}
.row {
	width: 100%;
	display: flex;
	background-color: #eee;
	flex-wrap: wrap;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	margin-top: 30px;
}
.cell {
	flex: 1 1 calc(100% / 8);
	padding : 10px;
	box-sizing: border-box;
	text-align: center;
	margin: auto;
}
.open_close_desk {
	display: flex;
	width: 5%;
	margin: auto;
	box-sizing: border-box;
	text-align: center;
	cursor: pointer;
	font-size: 20px;
	padding: 10px;
}
.open_close_mob {
	display: none;
}

button {
	background-color: #007BFF;
	color: white;
	border: 1px solid #848484;
	cursor: pointer;
	padding: 10px;
	width: 100%;
}

button:hover {
	background-color: #0058FF;
}
.details {
	margin: 0;
} 
.messages {
	text-align: left;
	padding-left: 20px;
}
.info-item {
    margin-bottom: 7px;
}
.sourceip, .stream_busy {
	color: red;
}
.stream_free {
	color: green;
}
.stream_kicked {
	color: red;
}
.info-label {
    font-weight: bold;
    margin-right: 10px;
    display: inline-block;
    width: 90px;
}

.info-value {
    display: inline-block;
    vertical-align: top;
}

.no-border-bottom {
	border-bottom: none;
}

.no-border-top {
	border-top: none;
}
@media (max-width: 800px) {
	.cell {
		flex: 1 1 100%;
	}
	.button[disabled] {
		display: none;
	}
	.open_close_desk {
		display: none
	}
	.open_close_mob {
		display: flex;
		margin: auto;
		box-sizing: border-box;
		text-align: center;
		cursor: pointer;
		font-size: 25px;
		padding: 10px;
	}
	.hide {
		display: none;
	}
}

.info_data {
	display: none;
}

.headTxt {
	font-size: 20px;
	padding: 20px 0 20px 0;
	margin-left: 10px;
}

.header {
	display: flex;
	justify-content: space-between;
	margin: auto;
	align-items: center;
	max-width: 800px;
	padding: 5px 0 0 0;
}

.login {
	text-align: center;
	font-size: 16px;
	padding: 10px 0 10px 0;
	margin-bottom: -20px;
}

.radioadminBtn {
	width: 180px;
	margin-right: 10px;
}

/* Stile für die Bestätigungsbox */
.confirmation-box {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	text-align: center;
}

.confirmation-content {
	background-color: white;
	width: 300px;
	padding: 20px;
	border-radius: 8px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.confirmation-content h2 {
	margin-top: 0;
}

.confirmation-content p {
	margin-bottom: 20px;
}

.confirmation-buttons {
	text-align: center;
}

.btn {
	display: inline-block;
	padding: 10px 20px;
	margin-bottom: 10px;
	cursor: pointer;
	border: none;
	border-radius: 5px;
}

.btn-primary {
	background-color: #007BFF;
	color: white;
}

.btn-primary:hover {
	background-color: #0056b3;
}

.btn-secondary {
	background-color: #6c757d;
	color: white;
}

.btn-secondary:hover {
	background-color: #5a6268;
}

	
.copy-button {
	max-width: 80px;
	background-color: gray;	
}
.copy-button:hover {
	max-width: 80px;
	background-color: #515151;	
}
.button[disabled] {
	opacity: 0.2;
	cursor: not-allowed;
}