body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
#header {
    background-color: #201f1f;
    color: white;
    padding: 10px 20px;
    display: flex;
   
}
#header #logo {
    align-items: left;
    width: 33px; /* Adjust width according to your logo size */
    height: auto; /* Maintain aspect ratio */
    margin-left: 5px; /* Space between logo and title */
}
#header h1 {
    margin: 0;
    font-size: 24px;
}
#header .tabs {
    display: flex;
    gap: 15px;
    margin-left: auto; /* Push tabs to the right */
    margin-right: 15px;
}
#header .tabs a {
    color: white;
    text-decoration: none;
    margin-top: 7px;
    margin-bottom: 7px;
    margin-right: auto; /* Space between logo and title */
}
#container {
    display: flex;
    background-color: white;
    width: 95%;
    max-width: 1400px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 20px auto; /* Center the container */
}

#footer {
    background-color: #fbfbfb; /* Background color for footer */
    text-align: center; /* Center-align text */
    padding: 5px; /* Add some padding */
    font-size: 12px; /* Set a small font size */
    color: #010101; /* Set text color */
    width: 100%; /* Match container width */
}
#left-panel {
    flex: 1;
    padding: 10px;
    text-align: center; /* Center text in left panel */
}
#right-panel {
    flex: 1;
    padding: 10px;
    border-left: 2px solid #e0e0e0;
}
h1, p {
    color: #333;
}

h2 {
    font-size: 18px; /* Adjusted font size for sections */
    margin-top: 18px;
    color: #000; /* Optional: Change to any color if needed */
}

h3 {
    font-size: 18px; /* Adjusted font size for sections */
    margin-top: 18px;
    color: #000; /* Optional: Change to any color if needed */
    text-align: center;
}

f{
    color: #333;
    font-size: 10px;
    text-align: right; /* Align text to the right */
}

h4{
    margin-top:15px;
    color: #333;
    font-size: 15px;
    text-align: center; /* Align text to the right */
}

textarea {
    width: 95%;
    margin: 10px 0;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    resize: vertical;
    height: 200px;
    outline: none;
    font-size: 14px;
}
button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: #006ce0;
    color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
button:hover {
    background-color: #0051a7;
}

#buttonContainer {
    display: flex;
    align-items: center;
}

#generateButton {
    flex: 11; /* Takes up 5 parts of the available space */
    padding: 10px; /* Adds padding for visual appearance */
}


#toggleButton {
    flex: 1;
    padding: 10px;
    margin-left: 9px;
    background-color: rgb(0, 0, 0); /* Default black color */
    color: rgb(255, 255, 255); /* Text color for visibility */
}

#toggleButton:hover {
    background-color: #2a2a2a;
}

#generateButton.extend-mode {
    background-color: rgb(21, 131, 47); /* Yellow background when in "Extend" mode */
    color: rgb(244, 244, 244); /* Change text color for better contrast */
}

#response {
    margin-top: 10px;
    white-space: pre-wrap;
    background-color:  white;
    padding: 10px;
    border-radius: 4px;
    overflow-wrap: anywhere;
    text-align: center;
}
#instructions {
    font-size: 13px;
    color: #555;
}
code {
    display: block;
    background: #f7f7f7;
    padding: 5px 10px;
    margin: 5px 0;
    border-left: 3px solid #007bff;
    white-space: pre-wrap;
}
.separator {
    border-left: 2px solid #5b5b5b;
    height: 100%;
    margin: 0 20px;
}
img {
    width: 100%; /* Makes the image responsive */
    max-width: 200px; /* Sets a max width for the logo */
    height: auto; /* Maintains aspect ratio */
    border-radius: 8px; /* Optional: adds rounded corners to the logo */
}
.bold-green {
    font-weight: bold;
    color: green; /* This will make the text green */
}
.bold-yellow {
    font-weight: bold;
    color: rgba(255, 255, 0, 0.697); /* This will make the text green */
}
.bold-blue {
    font-weight: bold;
    color: blue; /* This will make the text blue */
}
.bold-grey {
    font-weight: bold;
    color: rgb(80, 80, 80); /* This will make the text black */
}

.bold-black {
    font-weight: bold;
    color: rgb(0, 0, 0); /* This will make the text black */
}



#tabs {
    display: flex;
    margin-bottom: 3px;
}

.tab-button {
    padding: 10px;
    cursor: pointer;
    border: none;
    background-color: #202020;
    color: #ffffff;
    margin-right: 5px;
    border-radius: 5px 5px 0 0; /* Rounded corners */
    transition: background-color 0.3s; /* Smooth transition on hover */
}

.tab-button:hover {
    background-color: #d0d0d0;
}

.tab-button.active {
    color: #000000;
    background-color: white; /* Highlight the active button */
    border-bottom: 2px solid #030303; /* Add a bottom border to active tab */
}

.tab {
    padding: 5px;
    background-color: white;
    border-radius: 0 0 5px 5px; /* Rounded corners for content */
}


.popup-container {
    display: none; /* Hidden by default */
}

.popup {
    display: none; /* Initially hidden */
    position: fixed;
    z-index: 1001; /* High enough to be above other elements */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Black with opacity */
}

.popup-content {
    position: absolute; /* Use absolute positioning */
    top: 50%; /* Position it halfway down the window */
    left: 50%; /* Position it halfway across the window */
    transform: translate(-50%, -50%); /* Adjust for the height and width of the element */
    background-color: #ffffff;
    padding: 30px; /* Add padding for visual comfort */
    border-radius: 8px;
    width: 90%; /* Responsive width */
    max-width: 400px; /* Max width */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left; /* Align text to the left */
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

label {
    display: block;
    margin-top: 15px;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    width: 100%;
    background-color: #006ce0;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #0051a7;
}

.popup-content h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.popup-content p {
    margin-top: 10px;
    font-size: 14px;
}
