
body {
    font-family: Arial, sans-serif;
    background: #2c2f33;
    color: #f0f0f0;
    margin: 0;
    padding: 20px;
}


a {
    color: #72b7ff; 
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


.container {
    max-width: 800px;
    margin: auto;
    background: #23272a;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px #000;
}


input[type="text"], select {
    width: 70%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    background: #2c2f33;
    color: #f0f0f0;
}

select {
    height: 120px;
}


button {
    padding: 10px 15px;
    background-color: #7289da;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #5b6eae;
}


.hidden {
    display: none;
}


#resultsContainer {
    margin-top: 20px;
}


.palette-row, #colorPaletteAdvanced {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    justify-content: flex-start;
}

.color-block, .color-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px; 
}


.color-box {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 2px solid #ffffff;
    box-sizing: border-box;
}


.color-hex {
    margin-top: 5px;
    font-size: 0.75em;
    color: #ccc;
    text-align: center;
}
