#ecl-wrapper {
    max-width: 450px;
    margin: 40px auto;
    padding: 30px;
    background: #f9f9f9;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#ecl-wrapper input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

#ecl-wrapper input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
}

#ecl-wrapper button {
    width: 100%;
    padding: 12px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

#ecl-wrapper button:hover {
    background: #005a87;
}

#ecl-wrapper button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.ecl-info {
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border-left: 4px solid #0073aa;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

.ecl-info em {
    font-weight: bold;
    color: #0073aa;
}

#ecl-message {
    margin-top: 15px;
    font-weight: bold;
}

#ecl-message p {
    padding: 10px;
    border-radius: 4px;
    margin: 10px 0;
}

#ecl-message p[style*="green"] {
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

#ecl-message p[style*="red"] {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}