body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 20px;
    background-color: #f4f4f4;
    color: #333;
	
	.container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
}

h2 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
}
h3 {
    color: #666;
}

p {
    margin: 10px 0;
}

pre {
    background-color: #eaeaea;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    overflow-x: auto;
    white-space: pre-wrap; /* Allows wrapping of long lines */
}

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

hr {
    border: 1px solid #ccc;
    margin: 20px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #3498db;
    color: white;
}

tr:nth-child(even) {
    background-color: #eaeaea;
}

tr:hover {
    background-color: #d1e7fd;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

b {
    color: #000;
}
.menu {
    list-style-type: none;
    padding: 0;
}

.menu li {
    margin: 10px 0;
}

.menu a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}

.menu a:hover {
    text-decoration: underline;
}

.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 40%; 
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.flowchart {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: 20px;
}

.processor {
    background-color: #e7f3fe;
    border: 1px solid #b3d7ff;
    border-radius: 8px;
    padding: 15px;
    width: 40%;
}

.processor h2 {
    text-align: center;
    color: #0056b3;
}
.arrow {
    font-size: 24px;
    margin: 0 20px;
    color: #0056b3;
}