/* === Modernes Farbschema und Grundstil für Fußballseite === */
/* Reaperman */

/* Grundlayout */
body {
    background-color: #f4f6f9;
    font-family: 'Montserrat', sans-serif;
    color: #1e1e1e;
    font-size: 14px;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    color: #0056b3;
}

/* Überschriften */
h1 {
    font-size: 2em;
    font-weight: 600;
    text-transform: none;
}

h2 {
    font-size: 1.75em;
    font-weight: 600;
    text-transform: none;
}

h3 {
    font-size: 1.5em;
    font-weight: 500;
    text-transform: none;
}

h4 {
    font-size: 1.25em;
    font-weight: 500;
    text-transform: none;
}


/* Buttons */
button, .btn, .button {
    background-color: #0076ba !important;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button:hover, .btn:hover {
    background-color: #0076ba;
}

/* Modulüberschriften */
.moduletable h3 {
    border-left: 5px solid #007bff;
    padding-left: 10px;
    margin-bottom: 15px;
}

/* Logo */
.custom-header {
    background: linear-gradient(to right, #222, #333);
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.custom-header h1 {
    color: #f5f5f5;
    text-shadow: 1px 1px 3px #000;
    font-weight: 700;
}

.custom-header {
    padding: 20px 0;
    background: #f4f6f9;
    color: #f50b0b;
}

@media (max-width: 768px) {
    .custom-header {
        padding: 15px 0;
    }
}

/* Inputboxen z.B. Tippabgabe */
.inputbox {
    display: inline-block !important;
    vertical-align: middle;
    margin-right: 5px; /* Abstand zwischen den Eingabefeldern */
    margin-left: 5px;
}

.hasTip {
    font-size: 12px !important;
}