.mmz-ctc-info {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 3px;
}

.mmz-ctc-info .bank-icon {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.mmz-ctc-info p {
    margin: 5px 0;
}

.ltr {
    direction: ltr !important;
    text-align: left !important;
    display: inline-block;
}

/* Card to Card Gateway Styles */
.mmz-ctc-form-fields {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
}

/* Main container styles */
.mmz-ctc-container {
    border: 1px solid #d5d8dc;
    border-radius: 3px;
    background: #f9f9f9;
    padding: 32px 24px;
    margin-top: 30px;
    width: 100%;
}

/* Bank icon section */
.mmz-ctc-bank-section {
    text-align: center;
    margin-bottom: 30px;
}

.mmz-ctc-bank-icon {
    max-width: 64px;
    height: auto;
    background: #fff;
    border-radius: 8px;
    padding: 6px;
    border: 1px solid #ddd;
}



/* Card number display */
.mmz-ctc-card-number-display {
    font-size: 20px;
    color: #1976d2;
    font-weight: 700;
    margin-top: 14px;
}

.mmz-ctc-card-number {
    font-family: monospace;
    user-select: all;
}

.mmz-ctc-copy-button {
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    margin-left: 8px;
    vertical-align: middle;
    padding: 4px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.mmz-ctc-copy-button:hover {
    background-color: rgba(25, 118, 210, 0.1) !important;
}

.mmz-ctc-copy-button:focus {
    outline: 2px solid rgba(25, 118, 210, 0.3);
    outline-offset: 2px;
}

.mmz-ctc-copy-button svg {
    display: block;
    width: 18px;
    height: 18px;
}

/* Card holder name */
.mmz-ctc-card-holder {
    font-size: 14px;
    color: #777;
    margin-top: 4px;
}

/* Fieldset styles */
.mmz-ctc-fieldset {
    width: 100%;
    max-width: 100%;
    border: none;
    padding: 0;
    margin: 0;
}

/* Form field styles */
.mmz-ctc-field {
    flex: 1;
    margin: 0;
}

.mmz-ctc-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
}

.mmz-ctc-required {
    color: #b94a48;
}

.mmz-ctc-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #d5d8dc !important;
    border-radius: 3px;
}

/* Notice message */
.mmz-ctc-notice {
    font-size: 15px;
    color: #22577a;
    background: #e3f0fa;
    border: 1px solid #b5d0ea;
    padding: 14px 18px;
    border-radius: 7px;
    text-align: center;
    margin-bottom: 0;
    margin-top: 22px;
    font-weight: 500;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .mmz-ctc-form-fields {
        flex-direction: column !important;
    }

    .mmz-ctc-form-fields .mmz-ctc-field {
        width: 100%;
    }
}