:root {
    --primary-color: #13b5ea; /* Xero Blue */
    --primary-hover: #0d96c4;
    --bg-color: #f4f7f9;
    --card-bg: #ffffff;
    --text-color: #333333;
    --text-muted: #666666;
    --border-color: #e1e4e8;
    --radius: 8px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background: var(--card-bg);
    max-width: 600px;
    width: 100%;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.logo {
    max-width: 100px;
    height: auto;
}

header {
    margin-bottom: 30px;
    text-align: center;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

h2 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

p {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

input[type="text"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(19, 181, 234, 0.1);
}

small {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

button {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
}

button:hover {
    background-color: var(--primary-hover);
}

hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 30px 0;
}

.results-area {
    min-height: 100px;
}

.results-area .result-item {
    margin-bottom: 16px;
}

.results-area .result-item:last-of-type {
    margin-bottom: 0;
}

.results-area label {
    margin-bottom: 6px;
}

.results-area .box {
    background: #f9fafb;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 13px;
    word-break: break-all;
    white-space: pre-wrap;
    color: var(--text-color);
}
