/* assets/style.css */
body {
    background-color: #0d0d0d;
    color: #f5f5f5;
    font-family: monospace;
    margin: 0;
    padding: 0;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer {
  margin-top: 40px !important;
  font-size: 14px !important;
  color: #888 !important;
    text-align: center;
}

form, .container {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    width: 100%;
    max-width: 1300px;
    box-sizing: border-box;
}

h1 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

select, input[type="checkbox"], button {
    font-family: monospace;
    font-size: 1rem;
}

select, button {
    width: 100%;
    padding: 0.5rem;
    border-radius: 6px;
    border: none;
    margin-top: 0.5rem;
}

select {
    background-color: #2a2a2a;
    color: #f5f5f5;
}

button {
    background-color: #3a3aff;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background-color: #5555ff;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

pre {
    background-color: #000000;
    color: #00ff88;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
}

a.button {
    display: block;
    text-align: center;
    background-color: #00875a;
    color: white;
    padding: 0.5rem;
    margin-top: 1rem;
    border-radius: 6px;
    text-decoration: none;
}
a.button:hover {
    background-color: #00aa77;
}
.software-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.software-list label {
    background-color: #1e1e1e;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #333;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.software-list label:hover {
    background-color: #2a2a2a;
}

.software-list input[type="checkbox"] {
    margin-right: 0.5rem;
}
