body {
    background-color: #f9f9f9;
    font-family: 'Arial', sans-serif;
}

.scrollable-segment {
	max-height: 375px;
	overflow-y: auto; /* Ermöglicht das Scrollen */
	border: 1px solid #ddd;
	padding: 15px;
	margin: 20px 0;
}

.title-bar {
    background-color: #247876;
    color: white;
    padding: 20px 0;
	display: flex;
    align-items: center; /* Zentriert die Inhalte vertikal */
    gap: 10px;
}
.title-bar h1 {
	color: white !important;
	padding-top: 11px !important;
	margin: 0;
}
.title-bar img {
    width: 4.5em !important;
	/*max-width: 50px; *//* Legt eine maximale Breite für das Bild fest */
    height: auto; /* Erhält das Seitenverhältnis */
}
.left-pane, .right-pane {
    padding: 20px;
}

.ui.table {
	font-size: 16px;
}
.ui.segment.turnierContent {
	/*padding:0px;*/
}

.ui.attached.segment.ziffer {
	width: 58px;
	max-width: none;
	/*margin: 0px;*/
	border: 0px;
	text-align: center;
    font-size: 25px;
    font-weight: bold;
}

.svg_icon {
	width:35px;
}

.ziffer.pidisplay {
	padding-top:0px;
	padding-bottom:0px;
}
.ziffer.pidisplay.ende {
	color:green;
}

.doubledotColumn.ro.pidisplay {
	padding-top:0px;
	padding-bottom:0px;
}

.ended{
	/*background-color: green;
    color: white;*/
}

.ui.ziffer.ro {
	font-size: 76px !important;
	/*padding-top: 7px;*/
	padding-left: 0px;
	font-weight: bold;
	border-radius: 10px;
}

.attached.button.ziffer {
	display: inline-block;
}

.doubledotColumn {
    display: flow;
    font-size: 76px;
    text-align: center;
    vertical-align: middle;
    padding-top: 55px;
    margin-left: -13px;
}

.doubledotColumn.ro {
    padding-top: 66px;
}


.timer {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    margin-bottom: 20px;
}

.dropzone {
            border: 2px dashed #ccc;
            border-radius: 5px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
        }

.dropzone.dragging {
            border-color: #2185d0;
        }
.drag-area {
            border: 2px dashed #ccc;
            border-radius: 5px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: border-color 0.3s;
        }

        .drag-area.dragging {
            border-color: #2185d0;
        }
td.winner {
	color: white;
    background-color: green;
}
td.looser {
	color: white;
    background-color: red;
}
td.tisch {
	text-align: center;
}
td.status {
	text-align: center;
}
/* Für genau 1920px Breite oder größer */
@media screen and (min-height: 1000px) {
    .scrollable-segment {
        max-height: 720px;
		overflow-y: auto; /* Ermöglicht das Scrollen */
		border: 1px solid #ddd;
		padding: 15px;
		margin: 20px 0;

    }
}