.ccc-reverse-swap-form {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
}
.ccc-reverse-swap-form h2 {
    text-align: center;
    margin-bottom: 10px;
}
.ccc-reverse-swap-form p {
    text-align: center;
    margin-bottom: 15px;
}
.ccc-reverse-swap-form img {
    display: block;
    margin: 10px auto;
    max-width: 100px;
}
#ccc-reverse-swap-button {
    position: relative;
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 150px;
    margin: 0 10px;
}
#ccc-reverse-swap-button:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}
#ccc-reverse-swap-button.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
#ccc-amount, #ccc-currency, #ccc-name {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
#ccc-expected-amount {
    margin-bottom: 15px;
    font-size: 14px;
    color: #333;
    font-weight: bold;
    text-align: center;
}
#ccc-reverse-swap-error, #ccc-reverse-swap-success {
    display: none;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}
#ccc-reverse-swap-error {
    background-color: #f8d7da;
    color: #721c24;
}
#ccc-reverse-swap-success {
    background-color: #d4edda;
    color: #155724;
}
.button-group {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}
@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}
@media (max-width: 600px) {
    #ccc-reverse-swap-button {
        font-size: 14px;
        padding: 8px 16px;
        width: 120px;
    }
    #ccc-amount, #ccc-currency {
        font-size: 14px;
    }
}