/* General body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
    margin: 0;
    line-height: 1.6;
}

img {
    width: 250px; /* You can adjust this as needed */
    height: auto; /* Keeps the aspect ratio intact */
    border-radius: 50%; /* Optional: if you want rounded corners */
}


/* Header styles */
h1 {
    color: #0254EB;
}

h2 {
    color: #0247FE;
    margin-bottom: 10px;
}

hr {
    border: 0;
    height: 1px;
    background: #333;
    background-image: linear-gradient(to right, #ccc, #333, #ccc);
}

/* Paragraph styles */
p {
    margin: 20px 0;
}

/* Specific injury sections can have a lighter background for emphasis */
h4 {
    background-color: #e0e0e0;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Link colors */
a {
    color: #0254EB;
}

/* Style for list of achievements or important points */
ul {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

/* Add some styling to tables if needed */
table {
    width: 100%;
    border-collapse: collapse;
}
table, th, td {
    border: 1px solid #ccc;
}
th, td {
    padding: 10px;
    text-align: left;
}

/* Style adjustments for better spacing and visual hierarchy */
h4 {
    margin-top: 20px;
}

