* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #e0e0e0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
    max-width: 500px;
    border-radius: 20px;
    padding: 30px;
    margin: 0 auto;
}

h1 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.5rem;
    text-align: center;
}

.label-input-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
    justify-content: flex-start;
}

#user-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

#results-div {
    font-size: 1.5rem;
    color: #000000;
    font-weight: 600;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 2rem;
}

.button {
    display: flex;
    padding: 10px 20px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: linear-gradient(90deg, #a30d7e, #3f0ba0);
    color: white;
    transition: background-color 0.3s ease;
    width: 15rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
}