/* override base styling */
.topnav .nav-link {
    color: var(--blue) !important;
}

.topnav .navbar-brand {
    color: var(--blue) !important;
}

.navbar-toggler {
    color: rgba(255, 255, 255, .55) !important;
    border-color: rgba(255, 255, 255, .1) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.add-payment-btn {
    user-select: none;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.add-payment-btn:hover {
    background: var(--superlight-gray);

    .arrow-right {
        right: 3px;
    }
}

.arrow-right {
    position: absolute;
    right: 10px;
    top: 40%;
    transform: translateY(-50%);
    height: 20px;
    margin: auto 0;
    font-size: 20px;
    transition: 0.3s;
}

.small-container {
    border-radius: 10px;
    padding: 5px;
    overflow-x: auto;
    margin-bottom: 20px;
    margin-top: 5px;

    border: 1px solid var(--medium);
}

.edit-btn {
    width: 35px;
    height: 35px;
    font-size: 20px;
    padding: 0px !important;
    position: relative;
    margin-top: 5px;
}

.edit-btn-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#edit-area {
    display: none;
}

.pending {
    color: var(--maize-dark);
}

.complete {
    color: #2f9600;
}

.card-listings {
    margin: 0 auto;
    width: calc(100% - 20px);
    border: 1px solid var(--medium);
    border-radius: 8px;
    padding: 15px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    position: relative;
}

.status {
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--medium);
}

.game-listings {
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

.details {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--medium);
    padding-bottom: 10px;
}

.price,
.payout {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.cancel-listing {
    position: absolute;
    right: 10px;
    top: 0px;
    font-size: 30px;
    padding: 2px;
    color: #dc3545;
}

#cc-name {
    font-weight: bold;
}

.cl-unverified {
    width: calc(100% - 20px);
    margin: 0 auto;
    margin-bottom: 15px !important;
}

#seller-hints {
    display: none;
}