/* Maplay Footer Styles */

.maplay-footer-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    margin-top: 30px;
    /* Spacing from main content */
}

.maplay-footer-content {
    background-color: #dddddd;
    /* Bright grey as requested */
    color: #555;
    padding: 15px 30px;
    border-radius: 20px;
    /* Rounded rectangle */
    font-size: 13px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: inline-block;
    /* Wrap content */
    max-width: 1200px;
    /* Typical content width limit */
    width: 90%;
    /* Responsive width */
}

.maplay-footer-content a {
    color: #333;
    text-decoration: none;
    margin: 0 5px;
    font-weight: 500;
    transition: color 0.2s;
}

.maplay-footer-content a:hover {
    color: #007bff;
    text-decoration: underline;
}

.maplay-footer-content .copyright {
    margin-left: 10px;
    color: #444;
    font-weight: bold;
}

/* Add responsive stacking for very small screens if needed */
@media (max-width: 576px) {
    .maplay-footer-content {
        width: 95%;
        padding: 10px;
        font-size: 11px;
        line-height: 1.8;
    }
}