/* fighter-michel-krusche.css */

body {
    background-color: #1c1c1c;
    color: #fff;
    font-family: 'Arial', sans-serif;
    margin: 0;
}

header {
    background-color: #333;
    padding: 20px;
    text-align: center;
}

header img {
    max-width: 100%;
    height: auto;
    width: 150px;
}

nav {
    text-align: center;
    background-color: #444;
    padding: 10px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#boxer-profile {
    text-align: center;
}

h2, h4 {
    color: #ffd700;
}

.profile-info {
    border-bottom: 2px solid #555;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.profile-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.record {
    font-size: 18px;
    color: #aaa;
}

#fight-history {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.fight-list {
    list-style: none;
    padding: 0;
}

.fight-list li {
    margin: 10px 0;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #555;
}

.win {
    color: #4caf50;
}

.lose {
    color: #f44336;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #444;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.back-link:hover {
    background-color: #555;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    position: fixed;
    width: 100%;
    bottom: 0;
}
