body {
    font-size: small;
    font-family: Arial, sans-serif;
    margin: 20px;
}
.red-text {
    color: red;
}
.war-list {
    list-style: none;
    padding: 0;
}
.war-item {
    cursor: pointer;
    padding: 5px;
    border: 1px solid #ccc;
    margin: 5px 0;
    position: relative;
}
.war-item:hover {
    background-color: #f0f0f0;
}
.war-lost {
    color: red;
}
.war-details {
    padding: 5px;
    border: 1px solid #ccc;
    margin-top: 5px;
    display: none;
}
@keyframes flashing {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.loading-message {
    color: red;
    font-weight: bold;
    margin-left: 10px;
    animation: flashing 1s infinite;
}
.arrow {
    font-size: 12px;
    margin-right: 10px;
}
table {
    margin-left: 20px;
    border-collapse: collapse;
    width: 60%;
}
table, th, td {
    border: 1px solid #ccc;
}
th, td {
    padding: 4px;
    text-align: left;
}
th {
    background-color: #f0f0f0;
}
.center {
    text-align: center;
}