:root {
    --mdc-theme-primary: #6750A4;
    background-color: #F6F2F7;
}

body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 28px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 90%;
    max-width: 450px;
}

.header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.header h1 {
    font-size: 1.75rem;
    margin: 0;
    color: #1D1B20;
}

.header p {
    color: #49454F;
    margin: 0.5rem 0 0;
}

.input-group {
    margin-bottom: 1.5rem;
}

.mdc-text-field {
    width: 100%;
}

.button-group {
    display: flex;
    gap: 16px;
    margin-bottom: 2rem;
}

.button-group button {
    flex: 1;
    height: 56px;
    border-radius: 28px;
}

.result-area {
    background-color: #FEF7FF;
    border: 1px solid #CAC4D0;
    padding: 1.25rem;
    border-radius: 12px;
    min-height: 80px;
}

.result-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6750A4;
    margin-bottom: 8px;
    text-transform: uppercase;
}

#resultText {
    word-break: break-all;
    color: #1D1B20;
    line-height: 1.5;
}