.atwcp-container {
    max-width: 520px;
    background: #f2fbf5;
    border: 2px solid #2e7d32;
    padding: 20px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
}

.atwcp-container label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #2e7d32;
}

.atwcp-container input,
.atwcp-container select {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #2e7d32;
    border-radius: 4px;
    font-size: 15px;
}

.atwcp-result {
    margin-top: 12px;
    background: #e8f5e9;
    padding: 10px;
    border-radius: 5px;

    display: block; /* 👈 IMPORTANT: not flex */
}



#atwcpCopy {
    margin-top: 6px;      /* minimal gap */
    margin-left: auto;   /* push to right */
    display: block;

    background: #2e7d32;
    color: #fff;
    border: none;
    padding: 6px 14px;
    font-size: 13px;
    cursor: pointer;
    border-radius: 4px;
}


#atwcpCopy:hover {
    background: #1b5e20;
}


#atwcpOutput {
    width: 100%;
    min-height: 90px;
    resize: both;
    overflow: auto;
    padding: 10px;
    border: 1px solid #2e7d32;
    border-radius: 4px;
    font-size: 14px;
    background: #ffffff;
    box-sizing: border-box;
    display: block;
}


.atwcp-container select {
    width: 100%;
    height: 44px;                     /* FIX vertical centering */
    padding: 0 38px 0 12px;           /* remove vertical padding */
    
    border: 1px solid #2e7d32;
    border-radius: 4px;
    background-color: #ffffff;

    color: #2e7d32;
    font-size: 14px;
    font-weight: 500;

    line-height: 44px;                /* KEY FIX: text perfectly centered */
    
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, #2e7d32 50%),
        linear-gradient(135deg, #2e7d32 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 18px,
        calc(100% - 13px) 18px;
    background-size: 5px 5px;
    background-repeat: no-repeat;
}

.atwcp-container select:focus {
    outline: none;
    border-color: #1b5e20;
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.15);
}

