body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212; /* Dark background */
    color: #E0E0E0; /* Light text */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
}

/* Search Bar Container */
.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
}

.search-container input {
    width: 300px;
    padding: 10px 20px;
    border: 2px solid #ffa500; /* Orange theme */
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: width 0.3s ease;
    background-color: #f9f9f9;
    color: #333;
}

.search-container input:focus {
    width: 400px; /* Expands on focus */
    border-color: #ff7f00; /* Slightly darker orange */
}

.search-container .search-btn {
    background-color: #ffa500;
    border: none;
    border-radius: 50%;
    padding: 10px;
    margin-left: -40px;
    cursor: pointer;
    color: #fff;
    outline: none;
}

.search-container .search-btn i {
    font-size: 18px;
}

/* Hover effect */
.search-container .search-btn:hover {
    background-color: #ff7f00;
}

/* Request Command Button */
.request-button {
    padding: 10px 20px;
    background-color: #ff6600; /* Matches the orange theme */
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px; /* Rounded corners to match the overall style */
    margin: 20px 0;
    transition: background 0.3s;
}

.request-button:hover {
    background-color: #e65c00; /* Darker orange on hover */
}

/* The popup form */
.popup-form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1E1E1E; /* Dark background to match theme */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    z-index: 10;
    max-width: 400px;
    width: 100%;
}

.form-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 5;
}

/* Form elements */
.form-group label {
    color: #ff6600; /* Orange for labels */
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    background-color: #2a2a2a; /* Dark background */
    color: #fff; /* Light text */
    border: 1px solid #ff6600; /* Orange border */
    border-radius: 5px;
    outline: none;
}

.submit-button {
    background-color: #ff6600;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.submit-button:hover {
    background-color: #e65c00; /* Darker orange on hover */
}

.close-button {
    background-color: #ff3333; /* Red close button */
    color: white;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.navbar {
    display: none;
    background-color: #ff6600; /* Orange */
    position: absolute;
    top: 50px;
    right: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

pre {
    border-radius: 20px;
}

.navbar.active {
    display: block;
}

.navbar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.navbar ul li {
    margin: 0;
}

.navbar ul li a {
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    display: block;
    transition: background 0.3s;
}

.navbar ul li a:hover {
    background-color: #db5800; /* Darker orange on hover */
}

.hamburger {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.centered-content {
    text-align: center;
    margin-top: 50px;
}

.homepage h1 {
    font-size: 4em;
    margin-bottom: 10px;
    color: #ff6600; /* Darker orange */
}

.description {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.buttons {
    margin-top: 20px;
}

.button {
    display: inline-block;
    background-color: #ff6600; /* Darker orange */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px;
    transition: background 0.3s;
}

.button:hover {
    background-color: #e65c00; /* Even darker orange */
}

h1, h2, h3 {
    margin-top: 20px;
    color: #ff6600; /* Darker orange */
}

.command, .category, .version {
    background: #1E1E1E; /* Darker card background */
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    margin: 20px 0;
    padding: 20px;
    max-width: 800px; /* Maximum width for cards */
    width: 100%; /* Responsive width */
}

.command h2, .category h2, .version h2 {
    margin: 0;
    color: #ff6600; /* Darker orange */
}

.command-usage {
    margin-top: 10px;
}

.changelog-item {
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

.changelog-item.added h3 {
    color: #2bff00; /* Darker background for added */
}

.changelog-item.improved h3 {
    color: #ffff00; /* Darker yellow for improved */
}

.changelog-item.deprecated h3 {
    color: #9b9b9b; /* Darker gray for deprecated */
}

.changelog-item.removed h3 {
    color: #ff0000; /* Darker red for removed */
}

.page-header {
    background-color: #1E1E1E; /* Dark background for header */
    padding: 20px;
    color: white;
    text-align: center;
    margin: 0;
    width: 100%; /* Full width */
}

.page-header h1 {
    margin: 0;
    font-size: 2.5em;
}

.page-header h2 {
    margin: 5px 0 0 0;
    font-size: 1.5em;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

#items-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Responsive grid */
    gap: 15px; /* Space between items */
    padding: 15px; /* Optional padding for the container */
    width: 100%; /* Ensure the container takes full width */
    box-sizing: border-box; /* Include padding in width */
}

.item {
    background-color: #2e2e2e;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s; /* Optional hover effect */
}

.item:hover {
    transform: scale(1.05); /* Optional hover effect */
}

.item i {
    font-size: 80px;
    display: block;
    margin-bottom: 10px;
}

.item h3 {
    font-size: 1rem;
    margin: 10px 0;
}

.item .price {
    font-size: 0.9rem;
}

footer {
    text-align: center;
    padding: 20px;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%; /* Full width */
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .homepage h1 {
        font-size: 3em; /* Smaller font size on small screens */
    }

    .description {
        font-size: 1.2em; /* Smaller description on small screens */
    }

    .button {
        padding: 10px 20px; /* Smaller button padding */
    }

    .command, .category, .version {
        padding: 15px; /* Smaller padding for cards */
    }
}
