.ms-cid-form {
    max-width: 600px;
    margin: auto;
    font-family: sans-serif;
}
.ms-cid-form input[type='text'],
.ms-cid-form input[type='email'] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
.ms-cid-submit {
    width: 100%;
    padding: 14px;
    background-color: #2daeff;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 14px;
    margin-top: 10px;
}
.ms-cid-result-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.ms-cid-result-wrapper input {
    flex: 1;
}
.ms-cid-parts {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 10px;
}
.ms-cid-parts div {
    flex: 1;
    text-align: center;
}
.ms-cid-parts input {
    width: 100%;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 8px;
}
#copy_cid {
    background-color: #2daeff;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 12px;
    cursor: pointer;
}