<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
 * MXMonitor Custom Styles
 * Contains all custom styling for the MXMonitor service section
 */

/* Common Elements */
h2 {
	margin-top: 15px;
}
.feature-box {
    background-color: #f8f8f8;
    border-left: 4px solid #0078d4;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 0 4px 4px 0;
}

.feature-box2 {
    background-color: #f8f8f8;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 0 4px 4px 0;
}

.alert-box {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

.tips-box {
    background-color: #e1f5fe;
    border-left: 4px solid #03a9f4;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

/* Dashboard Elements */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.dashboard-card {
    background-color: #f8f8f8;
    border-radius: 4px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dashboard-card h4 {
    margin-top: 0;
    color: #0078d4;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 8px;
}

/* Feature Page Elements */
.feature-card {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.feature-card h3 {
    color: #0078d4;
    margin-top: 0;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.feature-icon {
    background-color: #0078d4;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
}

/* Getting Started Elements */
.steps-container {
    counter-reset: step-counter;
    margin: 25px 0;
}

.step-item {
    position: relative;
    padding-left: 45px;
    margin-bottom: 30px;
    min-height: 36px;
}

.step-item:before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #0078d4;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    font-weight: bold;
}

/* Benefits Page Elements */
.benefit-card {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    border-top: 4px solid #0078d4;
}

.benefit-card h3 {
    color: #0078d4;
    margin-top: 0;
}

.case-study {
    background-color: #f0f8ff;
    border: 1px solid #cce5ff;
    border-radius: 4px;
    padding: 15px;
    margin: 25px 0;
}

.case-study h4 {
    color: #0078d4;
    margin-top: 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.comparison-table th {
    background-color: #0078d4;
    color: white;
    text-align: left;
    padding: 10px;
}

.comparison-table td {
    border: 1px solid #e0e0e0;
    padding: 10px;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Pricing Page Elements */
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 25px;
    flex: 1;
    min-width: 250px;
    border-top: 5px solid #0078d4;
}

.pricing-card.featured {
    border-top-color: #2ecc71;
    transform: scale(1.03);
    position: relative;
}

.pricing-card.featured:before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #2ecc71;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
}

.pricing-name {
    font-size: 24px;
    font-weight: bold;
    color: #0078d4;
    margin-top: 0;
    margin-bottom: 5px;
}

.pricing-price {
    font-size: 36px;
    font-weight: bold;
    margin: 15px 0;
}

.pricing-period {
    font-size: 14px;
    color: #666;
}

.pricing-features {
    margin: 20px 0;
    padding-left: 20px;
}

.pricing-features li {
    margin-bottom: 10px;
    position: relative;
}

.pricing-features li:before {
    content: "âœ“";
    color: #2ecc71;
    position: absolute;
    left: -20px;
}

.pricing-cta {
    display: block;
    text-align: center;
    background-color: #0078d4;
    color: white;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.pricing-cta:hover {
    background-color: #0056a3;
}

.pricing-cta:active, .pricing-cta:focus, .pricing-cta:visited {
	color: white;
}

.faqs {
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.faq-item h3 {
    color: #0078d4;
}

/* Better feature checkmarks */
.pricing-features {
    margin: 20px 0;
    padding-left: 0; /* Remove default padding */
    list-style-type: none; /* Remove default bullets */
}

.pricing-features li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px; /* Space for the checkmark */
    text-align: left;
    line-height: 24px;
}

.pricing-features li:before {
    content: "âœ“";
    color: #2ecc71; /* Green checkmark */
    position: absolute;
    left: 0;
    font-size: 20px;
    font-weight: bold;
    width: 25px;
    height: 25px;
    background-color: #eaffef; /* Light green background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* For the pricing card in the free version */
.pricing-card {
    text-align: center;
}

.pricing-card .pricing-features {
    display: inline-block;
    text-align: left;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-container {
        flex-direction: column;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
}

/* Updated screenshot container styles */
.screenshot {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 5px;
    margin: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 700px; /* Set maximum width to match your images */
    width: 100%; /* Take up full container width on smaller screens */
}

.screenshot img {
    display: block; /* Remove default inline spacing */
    width: 100%; /* Make image take full width of container */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure image never exceeds container */
}

.screenshot p {
    margin: 10px 0 0 0;
    font-size: 14px;
    color: #666;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .screenshot {
        width: 100%;
        max-width: 100%; /* Allow full width on small screens */
        margin: 15px auto;
    }
}

/* Add to your mxmonitor.css file */

.feature-highlights {
    margin: 25px 0;
    padding-left: 0;
    list-style-type: none;
}

.feature-highlights li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.feature-highlights li:before {
    content: "â†’";
    position: absolute;
    left: 0;
    top: 0;
    color: #0078d4;
    font-weight: bold;
    font-size: 18px;
}

.feature-highlights li strong {
    color: #0078d4;
    display: inline-block;
}</pre></body></html>