.container {
    text-align: center;
    margin: 50px auto;
    padding: 20px;
    background-color: rgb(241, 241, 241);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.215);
    width: 80%;
    max-width: 600px;
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

label {
    font-size: 1.1em;
    margin-right: 10px;
}

input[type="number"] {
    padding: 8px;
    font-size: 1.1em;
    width: 80px;
    margin-top: 5px;
}

.button-container {
    margin-top: 20px;
}

#rollButton {
    width: 70%;
}

button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

button:hover {
    background-color: #45a049;
}

.output-container {
    font-size: 1.2em;
    margin-top: 30px;
    text-align: center;
    width: 100%;
}

.results-output {
    font-weight: bold;
    font-size: 1.5em;
    color: #4CAF50;
    margin: 20px 0;
}

.copy-button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.copy-button:hover {
    background-color: #0056b3;
}

/* Dice Visuals */
.dice-visual-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}

.dice {
    width: 50px;
    height: 50px;
    margin: 5px;
    background-size: contain;
    background-repeat: no-repeat;
}

.dice1 {
    background-image: url('/public/assets/dice-1.svg');
}

.dice2 {
    background-image: url('/public/assets/dice-2.svg');
}

.dice3 {
    background-image: url('/public/assets/dice-3.svg');
}

.dice4 {
    background-image: url('/public/assets/dice-4.svg');
}

.dice5 {
    background-image: url('/public/assets/dice-5.svg');
}

.dice6 {
    background-image: url('/public/assets/dice-6.svg');
}
