﻿/* General Styles for Maintenance Page */
body.maintenance-page {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to the top */
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa; /* Light background */
    color: #333; /* Default text color */
}

/* Centering the Content */
.maintenance-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important; /* Align content to the top */
    align-items: flex-start !important; /* Align content to the left */
    flex-grow: 1; /* Pushes footer to the bottom */
    text-align: left !important; /* Align text to the left */
    max-width: 800px; /* Restrict width for better readability */
    width: 90%; /* Responsive width */
    margin: 0 auto;
    padding: 20px; /* Add padding for spacing */
}


/* Maintenance title styling */
.maintenance-title {
    font-size: 24px; /* Adjust size as needed */
    font-weight: bold;
    margin-bottom: 10px;
}

.maintenance-content h1 {
    color: black;
    display: inline-block; /* makes width shrink to text size */
}

/* Paragraph Styling */
.maintenance-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
    text-align: left; /* Align text to the left */
}

/* Highlighted Text */
.maintenance-content .highlight {
    color: #e4002b; /* Red color for emphasis */
    font-weight: bold;
}

/* Wrapper for the content */
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Add spacing between English and Arabic sections */
}

/* Align English text to the left */
.text-left {
    text-align: left;
    direction: ltr;
}


.no-bootstrap {
    all: initial; /* Reset all styles */
    direction: rtl;
    text-align: right;
    font-family: 'Arial', 'Tahoma', sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

    .no-bootstrap * {
        all: unset; /* Reset styles for child elements */
    }

    .no-bootstrap h1 {
        font-size: 24px;
        font-weight: bold;
    }

    .no-bootstrap p {
        margin: 0;
        padding: 0;
        color: #333;
    }


/* Footer Styling */
footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #e4002b;
    color: #fff;
    font-size: 0.9rem;
}

    footer a {
        color: #fff;
        text-decoration: none;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .maintenance-content {
        max-width: 90%; /* Adjust width for tablets */
        padding: 15px;
    }

    .maintenance-title {
        font-size: 1.8rem; /* Adjust heading size for tablets */
    }

    .maintenance-content p {
        font-size: 0.95rem; /* Adjust font size for tablets */
    }
}

@media (max-width: 480px) {
    .maintenance-content {
        max-width: 100%; /* Full width for smaller screens */
        padding: 10px;
    }

    .maintenance-title {
        font-size: 1.6rem; /* Smaller heading size for mobile */
    }

    .maintenance-content p {
        font-size: 0.9rem; /* Smaller font size for mobile */
        line-height: 1.5; /* Adjust line spacing for mobile */
    }
}
