/* Reset margin and padding for the page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure full height for the background */
html, body {
    min-height: 100vh; /* Ensures the body takes at least the full viewport height */
    font-family: 'Arial', sans-serif;
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
}

/* Container and layout styling */
.container {
    max-width: 900px; /* Wider container */
    margin: 20px auto; /* Centering the container */
    padding: 20px;
    background-color: #ffffff; /* White background for container */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1); /* Subtle shadow */
    display: flex;
    flex-wrap: wrap; /* Allow wrapping of commands */
    gap: 15px; /* Space between command boxes */
}

/* Title styling */
h1 {
    color: #000000; /* Black text */
    text-align: center;
    padding: 20px 0;
}

/* Category title styling */
.category-title {
    font-size: 1.5em;
    background-color: #f0f0f0; /* Light gray background for category */
    color: #000000; /* Black text */
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #cccccc; /* Light gray border */
    margin-top: 20px;
    width: 100%; /* Full width for category title */
}

/* Individual command box styling */
.command {
    flex: 1 1 calc(30% - 15px); /* Responsive width for command boxes */
    margin: 0; /* Reset margin */
    padding: 15px;
    background-color: #e0e0e0; /* Light gray background for command boxes */
    border-radius: 10px;
    border: 1px solid #cccccc; /* Light gray border for command box */
    transition: background-color 0.3s; /* Smooth transition */
}

.command:hover {
    background-color: #d0d0d0; /* Slightly darker gray on hover */
}

.command h3 {
    margin: 0;
    font-size: 1.2em;
    color: #000000; /* Black text for command title */
}

.command p {
    margin: 5px 0;
    color: #333333; /* Dark gray text for description */
}

/* Divider styling */
.divider {
    margin: 20px 0;
    border-top: 2px solid #cccccc; /* Light gray divider line */
}

/* Additional styling for user commands */
.category-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.command {
    margin-bottom: 20px;
}

.command h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.command p {
    font-size: 14px;
    margin-bottom: 10px;
}

.command strong {
    font-weight: bold;
}
