/* General body and font styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header styles from your CSS */
header {
    background: #0073e6;
    color: white;
    padding: 10px 20px;
    text-align: center;
}

h1 {
    margin: 0;
}

/* Main content area */
main {
    padding: 20px;
}

/* Common section styles from your CSS */
.content-section {
    background: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-section h3 {
    margin-top: 0;
}

/* Styles for code blocks */
pre {
    background: #272822;
    color: #f8f8f2;
    padding: 15px;
    border-radius: 4px;
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.5;
}

code {
    font-family: 'Courier New', Courier, monospace;
}

/* Specific styles for this page */
.service-description {
    margin-bottom: 25px;
}

/* Footer styles from your CSS */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}

.back-button {
    color: white;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid white;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #005bb5;
}

/* Styles for the new rule list */
.rule-list {
    list-style-type: none;
    padding-left: 0;
}

.rule-list li {
    background: #f9f9f9;
    margin-bottom: 10px;
    padding: 15px;
    border-left: 5px solid #0073e6;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Table styles to match the other page */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
th {
    background-color: #f2f2f2;
    font-weight: bold;
}
tr:nth-child(even) {
    background-color: #f9f9f9;
}
.malicious {
    color: #d9534f;
    font-weight: bold;
}
.clean {
    color: #5cb85c;
    font-weight: bold;
}
strong {
    font-weight: bold;
}