/* General body styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
    overflow-x: hidden;
    /* Avoid horizontal scroll */
}

/* Main content styles */
#main-content {
    transition: margin-left 0.5s;
    padding: 20px;
}

/* Sidebar styles */
#sidebar {
    height: 100%;
    width: 300px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: -300px;
    /* Hides the menu */
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

#sidebar a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 16px;
    color: #818181;
    display: block;
}

#sidebar a:hover {
    color: #f1f1f1;
    background-color: #333;
}

/* Menu button styles */
.menu-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 24px;
    cursor: pointer;
    background-color: #333;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    z-index: 2;
}

#close-btn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    background: none;
    color: #818181;
}

/* Content section styles */
.content-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-top: 80px;
}

header h1 {
    text-align: center;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    color: #555;
    border-top: 1px solid #ccc;
}

/* Media Query for small screens (e.g. smartphones) */
@media (max-width: 768px) {
    #sidebar {
        width: 200px;
    }

    #main-content {
        margin-left: 0;
    }

    #open-btn {
        left: 10px;
    }

    .menu-btn {
        position: fixed;
        top: 10px;
        left: 10px;
    }
}

/* Style for icons */
.fa-network-wired {
    color: #00bcd4;
}

.fa-wifi {
    color: #4caf50;
}

.fa-server {
    color: #607d8b;
}

.fa-docker {
    color: #2496ed;
}

.fa-shield-alt {
    color: #f44336;
}

.fa-file-signature {
    color: #4caf50;
}

.fa-heartbeat {
    color: #f44336
}

.fa-route {
    color: orange;
}

.fa-home {
    color: #ff9800;
}

.fa-hubspot {
    color: #ff5722;
}

.fa-tools {
    color: #03a9f4;
}

.fa-bell {
    color: #ffeb3b;
}

.fa-hdd {
    color: #9e9e9e;
}

.fa-video {
    color: #e91e63;
}

.fa-book {
    color: #795548;
}