body {
	color: #fff;
    background-image: url('../images/main.jpg');
    background-size: cover;
    background-position: top right;
}

H1 {
	line-height: 100px;
	text-align: right;
}

H2 {
	font-size: 32px;
	padding-bottom: 24px;
}

H3 {
	font-size: 24px;
	font-weight: 300;
}

A {
	color: #0c69b6;
}

.card {
	color: #fff;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid #6E6E6E;
}

.alert {
	color: #fff;
	background: rgba(0, 0, 0, 0.3);
}

.player-name {
	font-size: 20px;
	color: #010101;
	font-weight: bold;
}

.list-group {
	color: #010101 !important;
}

.card .text-muted {
	color: #fff !important;
}

.card-header {
	color: #010101;
	font-weight: bold;
}

.card .list-group .text-muted {
	color: #010101 !important;
}

.table-wrapper {
	width: 100%;
    border-radius: 0.375rem;   /* 6px */
    overflow: hidden;          /* oreže rohy buniek */
    display: inline-block;     /* aby radius fungoval pekne okolo tabuľky */
	margin-bottom: 24px;
}

/* Tabuľka bez vlastných bootstrap borderov, všetko si riešime sami */
.table-wrapper .table {
	width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 0;
}

/* Bunky – presne ako chceš */
.table-wrapper th,
.table-wrapper td {
	color: #fff !important;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #6E6E6E;
    padding: 0.5rem 0.75rem; /* môžeš upraviť podľa seba */
}

/* Zaoblené rohy na vonkajších bunkách */
.table-wrapper thead tr:first-child th:first-child {
    border-top-left-radius: 0.375rem;
}

.table-wrapper thead tr:first-child th:last-child {
    border-top-right-radius: 0.375rem;
}

.table-wrapper tbody tr:last-child td:first-child {
    border-bottom-left-radius: 0.375rem;
}

.table-wrapper tbody tr:last-child td:last-child {
    border-bottom-right-radius: 0.375rem;
}


.badge {
	padding: 7px 14px;
}

FOOTER {
	padding-top: 15px;
	margin-top: 15px;
	border-top: 1px solid rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
	H1 {
		line-height: 1.2;
	}
}