#military-view {
    background-image: url('../img/military.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px; /* Adjust based on your image size */
    position: relative;
    padding: 20px;
    color: #fff; /* Default text color for better contrast */
}

#military-view::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for better text readability */
    z-index: 0;
}

#military-view .header,
#military-view .military-options,
#military-view #army-status,
#military-view .battle-field {
    position: relative;
    z-index: 1;
}

.military-options {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.military-option {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 15px;
    width: 30%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent dark background */
    color: #fff;
    backdrop-filter: blur(2px);
}

.military-option h3 {
    margin-bottom: 10px;
    color: #fff;
}

.military-option p {
    margin-bottom: 10px;
    color: #ccc;
}

.military-option input, 
.military-option select {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    border: 1px solid #555;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.9);
}

#army-status {
    margin-top: 30px;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

#army-status h3 {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}
