﻿.convert-to-paid {
    background-color: #FFFFFF;
}

/* Payment status page */
    .convert-to-paid #payment-status {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        row-gap: 30px;
        width: 30vw;
        min-width: 500px;
        min-height: 380px;
        align-self: center;
        box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1), 0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
        border-radius: 7px;
        padding: 40px;
        animation: fadeInAnimation 1s ease forwards;
    }

    .convert-to-paid #status-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40px;
        width: 40px;
        border-radius: 50%;
    }

.convert-to-paid h2 {
    margin: 0;
    color: #30313D;
    text-align: center;
}

.convert-to-paid a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    display: block;
}

    .convert-to-paid a:hover {
        filter: contrast(120%);
    }

    .convert-to-paid #details-table {
        overflow-x: auto;
        width: 100%;
    }

.convert-to-paid table {
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
}

    .convert-to-paid table tbody tr:first-child td {
        border-top: 1px solid #E6E6E6; /* Top border */
        padding-top: 10px;
    }

    .convert-to-paid table tbody tr:last-child td {
        border-bottom: 1px solid #E6E6E6; /* Bottom border */
    }

.convert-to-paid td {
    padding-bottom: 10px;
}

    .convert-to-paid .TableContent {
        text-align: right;
        color: #6D6E78;
    }

    .convert-to-paid .TableLabel {
        font-weight: 600;
        color: #30313D;
    }

    .convert-to-paid #view-details {
        color: #0055DE;
    }

    .convert-to-paid #retry-button {
        text-align: center;
        background: #0055DE;
        color: #ffffff;
        border-radius: 4px;
        border: 0;
        padding: 12px 16px;
        transition: all 0.2s ease;
        box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
        width: 100%;
    }