.tattoo-tip-calculator {
    padding: 30px;
   
}

h1 {
    text-align: center;
    color: #ff6f61;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #f9f9f9;
    color: var(--color-primary-text);
    font-size: 16px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #ff6f61;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #ff4a3d;
}

.result {
    margin-top: 20px;
    padding: 1rem;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 5px;
    text-align: left;
    font-size: 18px;
}

.history {
    margin-top: 30px;
}

.history h2 {
    color: #ff6f61;
    margin-bottom: 10px;
}

.history-item {
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 5px;
    margin-bottom: 5px;
    font-size: 14px;
}

.etiquette {
    margin-top: 30px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 5px;
}

.etiquette h2 {
    color: #ff6f61;
    margin-bottom: 10px;
}

.etiquette ul {
    list-style-type: disc;
    padding-left: 20px;
}

.etiquette li {
    margin-bottom: 5px;
}