.add-row {
    margin-bottom: 20px;
    display: inline-block;
    background: #16a085;
}

.add-row:hover {
    background: #0d6d58;
}

.card-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.roi-table th,
.roi-table td {
    white-space: nowrap;
    text-align: left;
    vertical-align: middle;
}

input.error {
    border: 1px solid #ff3b3b;
    outline: none;
}

.currency-select {
    min-width: 12.5rem;
    width: auto;
}

div.currency {
    gap: 1rem;
}

.btn-primary:disabled {
    background-color: var(--yellow) !important;
    color: var(--dark) !important;
    cursor: no-drop;
    opacity: 0.65;
    box-shadow: unset !important;
    border: unset !important;
}

.roi-content-box small {
    font-size: 0.688rem;
    margin-top: 0.25rem;
}

@media (max-width: 767px) {
    table.roi-table thead {
        display: none;
    }

    table.roi-table,
    table.roi-table tbody,
    table.roi-table tr,
    table.roi-table td {
        display: block;
        width: 100%;
    }

    table td:before {
        content: attr(data-label);
        width: 50%;
    }

    table.roi-table td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        white-space: normal;
    }

    table.roi-table td .roi-content-box {
        width: 50%;
    }

    table.roi-table tr {
        margin-bottom: 1.25rem;
    }
}

@media(max-width: 380px) {
    table.roi-table td .roi-content-box input {
        max-width: 7.813rem;
    }
}