@charset "UTF-8";
/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    color: #f0f0f0;
    background-color: #121212;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #ffffff;
}

/* Section Styling */
.section {
    padding: 20px;
    margin: 20px auto;
    max-width: 1200px;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h2 {
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

h3 {
    color: #e0e0e0;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

/* Paragraph and List Styles */
p {
    line-height: 1.6;
    margin-bottom: 20px;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

strong {
    color: #ffa500;
}

/* Link Styles */
a {
    color: #1e90ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Image Placeholder Styles */
.image-placeholder {
    background-color: #333;
    width: 100%;
    height: 300px;
    margin: 20px 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;    
    overflow: hidden; /* Hide any overflow if the image is larger than the container */
}
.image-placeholder img {
    width: 300px; /* Set the width of the image */
	height: auto; /* Maintain aspect ratio */
    margin: 20px;
}

/* Button Styles */
button {
    background-color: #1e90ff;
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 2px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #4682b4;
}

/* Form Styles */
form {
    margin: 20px 0;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

input[type="text"], input[type="email"], input[type="password"], textarea {
    width: calc(100% - 22px);
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #2c2c2c;
    color: #f0f0f0;
}

input[type="submit"] {
    background-color: #1e90ff;
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 5px;
}

input[type="submit"]:hover {
    background-color: #4682b4;
}



.wrapper {
    display: flex;
    position: relative;
}

.toggle-btn {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 10px;
    background-color: #444;
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s;
}

.sidebar {
	margin-left:25px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    background-color: #222;
    padding: 10px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    transform: translateX(-100%);
    transition: transform 0.3s;
    z-index: 900; /* Ensure sidebar is above the content */
}

.sidebar-content a {
    display: block;
    color: #fff;
    padding: 10px;
    text-decoration: none;
    border-bottom: 1px solid #444;
}

.sidebar-content a:hover {
    background-color: #444;
}

.content {
    margin-left: 25px;
    padding: 20px;
    width: 100%;
    transition: margin-left 0.3s, width 0.3s;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: 100%;
        transform: translateX(-100%);
    }
    .content {
        margin-left: 25px;
        width: 100%;
    }
}

/* Active Sidebar Styles */
.sidebar.active {
    transform: translateX(0);
}

/* Content Adjustment for Desktop */
@media (min-width: 769px) {
    .sidebar.active + .content {
        margin-left: 285px;
        width: calc(100% - 250px);
    }
}

/* Toggle Button Hover */
.toggle-btn:hover {
    background-color: #555;
}

/* Add transition effects */
.toggle-btn {
    transition: background-color 0.3s ease;
}

.toggle-btn:hover {
    background-color: #555; /* Slightly lighter color on hover */
}

/* Style for a more visible toggle button */
.toggle-btn {
    width: 50px;
    background-color: #ff5722; /* Bright color for visibility */
    border-radius: 0 5px 5px 0; /* Rounded edges on the right */
    /* Other styles */
}

/* Add this CSS to style the toggle button with an icon */
.toggle-btn {
    width: 40px; /* Adjust width as needed */
    height: 100%; /* Full height to cover the sidebar */
    position: fixed;
    top: 0;
    left: 0;
    background-color: #333; /* Or your desired color */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.toggle-btn::before {
    content: "\2630"; /* Unicode for hamburger menu icon */
    font-size: 24px;
    color: white; /* Or your desired color */
}