#epc-wizard-app {
    font-family: sans-serif;
    max-width: 600px;
    margin: 2em auto;
    padding: 2em;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#epc-wizard-app h1, #epc-wizard-app h2 {
    text-align: center;
}

#epc-wizard-app input {
    display: block;
    width: 100%;
    padding: 0.5em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
    border-radius: 3px;
}

#epc-wizard-app button {
    padding: 0.5em 1em;
    border: 1px solid #007cba;
    background-color: #007cba;
    color: white;
    border-radius: 3px;
    cursor: pointer;
}

#epc-wizard-app button:hover {
    background-color: #005a87;
}

.epc-debug-log {
    margin-top: 2em;
    padding: 1em;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.epc-debug-log h2 {
    margin-top: 0;
}

.epc-debug-log pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    max-height: 200px;
    overflow-y: auto;
}

.pac-container {
    z-index: 99999 !important;
    font-size: 16px;
}

.epc-address-suggestions {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #ffffff;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
}

.epc-address-suggestions li {
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.epc-address-suggestions li:hover,
.epc-address-suggestions li:focus {
    background-color: #f3f4f6;
}

.epc-address-error {
    margin-top: 0.35rem;
    color: #b91c1c;
    font-size: 0.9rem;
}

.epc-address-use-typed {
    margin-top: 0.5rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid #1d4ed8;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.epc-address-use-typed:hover,
.epc-address-use-typed:focus {
    background-color: #1d4ed8;
}
