/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    background-color: #1e1e1e; /* Very dark gray for the body background */
    color: #d4d4d4; /* Light gray text color for better contrast */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
}

.tip-container {
    text-align: left;
    padding: 20px;
    background-color: #252526; /* Slightly lighter dark gray for the container */
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.25);
    width: 90%;
    max-width: 1400px;
}

.code-window {
    background-color: #000000; /* Black background for the PowerShell code area */
    border-radius: 5px;
    margin-bottom: 20px;
    position: relative;
    padding-top: 25px; /* Space for the window header */
}

.code-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 25px;
    background-color: #333333; /* Dark grey for the top bar */
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.code-buttons {
    display: flex;
}

.code-buttons span {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    margin-right: 5px;
}

.close-button { background-color: #ff5f56; }
.minimize-button { background-color: #ffbd2e; }
.maximize-button { background-color: #27c93f; }

.window-title {
    margin-left: 10px;
    color: #fff;
    font-family: 'Consolas', monospace;
}

pre {
    background-color: #000000; /* Black background for the PowerShell code */
    color: #fff; /* White text for the code */
    padding: 15px;
    border-radius: 5px;
    overflow: auto;
    font-family: 'Consolas', 'Courier New', monospace;
    min-height: 240px; /* Ensuring at least 6 rows tall based on typical line height */
}

.description-window {
    background-color: #333;
    padding: 15px;
    border-radius: 5px;
    color: #fff;
}

.button-group {
    display: flex;
    justify-content: space-around; /* Even spacing around each button */
    margin-top: 20px;
}

.button-group button {
    padding: 10px 20px;
    background-color: #007acc;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: auto; /* Auto width based on text */
}

.button-group button:hover {
    background-color: #005a9e;
}
