/* market_settings.css - External styles for market_settings.php error page */

/* Body styles for unavailable page */
.ms-unavailable-body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #e0eafc, #cfdef3);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
    text-align: center;
}

/* Main container */
.ms-container {
    max-width: 500px;
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Heading */
.ms-container h1 {
    font-size: 28px;
    margin-bottom: 16px;
}

/* Paragraph */
.ms-container p {
    font-size: 16px;
    margin-bottom: 12px;
}

/* Contact section */
.ms-contact {
    margin-top: 24px;
    font-size: 15px;
}

.ms-contact a {
    color: #0077cc;
    text-decoration: none;
}

.ms-contact a:hover {
    text-decoration: underline;
}

/* Footer */
.ms-footer {
    margin-top: 30px;
    font-size: 13px;
    color: #888;
}
