#getcid-form-wrap {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f8f8;
    padding: 24px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px #ddd;
}
.getcid-row {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}
.getcid-row label {
    font-weight: bold;
    margin-bottom: 6px;
}
.getcid-row input[type="text"],
.getcid-row input[type="email"],
.getcid-row textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-size: 16px;
}
.getcid-row textarea {
    resize: vertical;
    min-height: 60px;
    font-family: monospace;
    line-height: 1.4;
}
.getcid-installationid-row {
    position: relative;
}
.getcid-installationid-label-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.getcid-upload-btn {
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 6px 14px;
    font-size: 14px;
    cursor: pointer;
    margin-left: 12px;
    white-space: nowrap;
}
.getcid-upload-btn:hover {
    background: #005177;
}
.getcid-status {
    color: #d54e21;
    font-size: 13px;
    margin-top: 4px;
}
#getcid_confirmation_id[readonly] {
    background: #eaeaea;
}
.getcid-copy-btn {
    margin-top: 6px;
    background: #46b450;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 14px;
    cursor: pointer;
}
.getcid-copy-btn:hover {
    background: #368a3c;
}
.getcid-timer {
    font-size: 15px;
    color: #555;
    margin-bottom: 4px;
}
.getcid-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #ccc;
    border-top: 3px solid #0073aa;
    border-radius: 50%;
    animation: getcid-spin 1s linear infinite;
    vertical-align: middle;
    margin-left: 8px;
}
@keyframes getcid-spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}
.getcid-msg {
    color: #d54e21;
    font-size: 15px;
    margin-top: 8px;
}
#getcid_copy_notif {
    color: #46b450;
    font-size: 13px;
    margin-left: 10px;
}
.widefat.striped tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}
.widefat.striped tbody tr:nth-child(even) {
    background-color: #fff;
}
.widefat.striped tbody tr:hover {
    background-color: #eaeaea;
}

@media (max-width: 480px) {
    .getcid-installationid-label-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .getcid-upload-btn {
        align-self: flex-start;
    }
}
