
.cm-withdrawal-wrapper {
    max-width: 400px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    font-family: inherit;
}
.cm-withdrawal-wrapper p {
    margin-bottom: 15px;
}
.cm-withdrawal-wrapper label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}
.cm-withdrawal-wrapper input,
.cm-withdrawal-wrapper select,
.cm-withdrawal-wrapper textarea {
    width: 100%;
    padding: 8px 10px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.cm-withdrawal-wrapper .button-primary {
    background-color: #c9181c;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}
.cm-withdrawal-wrapper .button-primary:hover {
    background-color: #a71517;
}
.cm-success-message {
    background: #d4f9d4;
    color: #2d7a2d;
    padding: 10px 15px;
    border-left: 5px solid #4CAF50;
    margin-bottom: 15px;
    border-radius: 5px;
}
.cm-error-message {
    background: #fde0e0;
    color: #a30000;
    padding: 10px 15px;
    border-left: 5px solid #e53935;
    margin-bottom: 15px;
    border-radius: 5px;
}

#withdrawal-message:empty {
  display: none;
}











.cm-admin-review-box {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    border-radius: 8px;
}
.cm-admin-review-box ul {
    padding-left: 20px;
}
.cm-review-field {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.cm-review-field strong {
    min-width: 120px;
}
.cm-review-field span {
    font-family: monospace;
    background: #fff;
    padding: 3px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: inline-block;
}
.cm-copy-button {
    font-size: 12px;
    padding: 4px 10px;
}
.cm-review-buttons {
    margin-top: 20px;
}
@media(max-width: 600px) {
    .cm-review-field {
        flex-direction: column;
        align-items: flex-start;
    }
}