/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hidden {
    display: none;
}

/* Body and container styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* Form styling */
form {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

input, select {
    padding: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    border: 2px solid #ccc;
    border-radius: 4px;
}

input:focus, select:focus {
    border-color: #0056b3;
    outline: none;
}

button {
    padding: 10px;
    background-color: #5eac70;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #218838;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* CMYK Inputs styling */
.cmyk-inputs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.cmyk-inputs div {
    display: flex;
    flex-direction: column;
}

.cmyk-inputs input {
    width: 100%;
    max-width: 60px;  /* Ensure the inputs are reasonably sized */
    text-align: center;
}
