/* Styles for the commands section */
.commands-section {
    width: 100%;
    padding: 20px; /* Adds padding around the section */
}

h2 {
    color: #fff;
}

/* Styles for the tab buttons */
.tabs {
    margin-bottom: 20px; /* Space below the tabs */
    display: flex; /* Flexbox for horizontal layout */
    flex-wrap: wrap; /* Allow buttons to wrap */
}

.tab-content {
    display: flex; /* Enable flexbox for content */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    width: 100%; /* Full width for tab content */
    padding: 20px; /* Optional padding for tab content */
}

/* Tab button styles */
.tab-button {
    padding: 10px 20px; /* Padding for the tab buttons */
    margin-right: 10px; /* Space between buttons */
    color: #fff; /* Button text color */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners for buttons */
    cursor: pointer; /* Change cursor on hover */
    transition: background-color 0.3s; /* Smooth background color transition */
    background-color: transparent;
    flex: 1; /* Allow buttons to grow equally */
    min-width: 120px; /* Minimum width for buttons */
}

.tab-button.active {
    color: #75ff75;
}

.tab-button:hover {
 color: #80ff9c;
}

/* Styles for the grid of commands */
.grid {
    display: flex;
    flex-direction: column; /* Stack commands vertically */
    width: 100%; /* Full width of the container */
}

/* Styles for individual command cards */
.command {
    background: rgba(104, 121, 105, 0.199); /* White background for command cards */
    border-radius: 8px; /* Rounded corners */
    padding: 15px; /* Padding inside command cards */
    margin: 10px 0; /* Space between command cards */
    width: 100%; /* Full width of the grid */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: transform 0.2s; /* Smooth transform transition */
    border: 2px solid transparent; /* Set a default border */
    transition: border-color 0.3s ease;
}

.command:hover {
    border-color: #80ff9c;
}

/* Styles for command titles and descriptions */
.command h3 {
    margin: 0; /* Remove default margin */
    font-size: 1.2em; /* Increase font size for command title */
    color: #75ff75; /* Dark gray for command title */
}

.command p {
    margin: 5px 0 0; /* Space above and below description */
    color: #e0e0e0; /* Medium gray for command description */
    font-size: 0.9em; /* Slightly smaller font size */
}
.slash-icon{
    width: 20px;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .commands-section {
        padding: 10px; /* Reduce padding for smaller screens */
    }

    .tab-button {
        margin-right: 5px; /* Reduce margin for buttons */
        padding: 8px 16px; /* Adjust padding for smaller buttons */
        flex: 1; /* Ensure buttons grow to fill space */
        min-width: 80px; /* Smaller minimum width for mobile */
    }

    .command {
        padding: 10px; /* Reduce padding inside command cards */
        margin: 8px 0; /* Adjust margin for command cards */
    }

    .command h3 {
        font-size: 1.1em; /* Slightly smaller title font size */
    }

    .command p {
        font-size: 0.8em; /* Slightly smaller description font size */
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.5em; /* Adjust heading size for small screens */
    }

    .tab-button {
        padding: 6px 12px; /* Further reduce padding for very small screens */
    }

    .command {
        padding: 8px; /* Reduce padding inside command cards */
    }

    .command h3 {
        font-size: 1em; /* Further reduce title font size */
    }

    .command p {
        font-size: 0.7em; /* Further reduce description font size */
    }
}
/* Initial state for the fade-in */
body {
    opacity: 0;
    transition: opacity 0.5s ease-in;
  }
  
  /* This class will be added after the page loads */
  .fade-in {
    opacity: 1;
  }
  .fade-out {
    opacity: 0;
  }