.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

    html, html body {
        font-family: TikTok Sans, sans-serif, Verdana, Geneva, Tahoma, sans-serif;
        height: auto;
        min-height: 100%;
        font-size: 14px;
    }

.img-icon {
    height: 40px;
    width: auto;
    border-radius: 50%;
}

input {
    font-size: 14px;
}

.floating-label {
    position: relative;
    margin-bottom: 10px;
}

    .floating-label input, .floating-label textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 16px;
        transition: border-color 0.3s ease;
    }

    .floating-label label {
        position: absolute;
        left: 12px;
        top: 12px;
        font-size: 14px;
        color: #777;
        transition: top 0.3s ease, font-size 0.3s ease, color 0.3s ease;
    }

    .floating-label input:focus, .floating-label textarea:focus {
        border-color: darkslategray;
        outline: none;
    }

        .floating-label input:focus + label,
        .floating-label input:not(:placeholder-shown) + label,
        .floating-label textarea:focus + label,
        .floating-label textarea:not(:placeholder-shown) + label {
            top: -6px;
            font-size: 12px;
            color: darkslategray;
            background-color: #ffffff;
            padding: 0 4px;
            border-radius: 4px;
            left: 8px;
        }

.floating-label-right {
    position: relative;
    margin-bottom: 10px;
}

    .floating-label-right input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 16px;
        transition: border-color 0.3s ease;
    }

    .floating-label-right label {
        position: absolute;
        right: 12px;
        top: 12px;
        font-size: 14px;
        color: #777;
        transition: top 0.3s ease, font-size 0.3s ease, color 0.3s ease;
    }

    .floating-label-right input:focus {
        border-color: darkslategray;
        outline: none;
    }

        .floating-label-right input:focus + label,
        .floating-label-right input:not(:placeholder-shown) + label {
            top: -6px;
            font-size: 12px;
            color: darkslategray;
            background-color: #ffffff;
            padding: 0 4px;
            border-radius: 4px;
            right: 8px;
        }



form#frmInvoice {
    max-width: 95%;
    margin: auto;
}

#invoiceTable.table th, #invoiceTable.table td {
    vertical-align: middle;
}

.invoice-box {
    padding: 2rem;
    border: 1px solid #ccc;
    border-radius: 2rem;
}

#invoiceTable tr.line-item {
    border-bottom: 1px solid #ddd;
}

#logoDropZone {
    border: 1px dashed;
    text-align: center;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background 0.3s;
    width: 125px;
    height: 125px;
}

    #logoDropZone:hover {
        border-color: #555555;
        color: #555555;
    }

    #logoDropZone p {
        margin-top: 3rem;
    }

    #logoDropZone.hover {
        background-color: #e6f7ff;
    }

    #logoDropZone #logoPreview {
        width: 125px;
        height: 125px;
        border: 1px dashed;
    }

.upload-section-note-main {
    max-width: 200px;
    padding: 10px 15px;
}

.upload-section-note {
    margin: auto;
}

    .upload-section-note div {
        color: #676767;
        font-size: 10px;
        padding-top: 5px;
    }

.invoice-main-details input {
    max-width: 150px;
}

#divBillToAndShipTo {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

#divInvoiceSummary {
    border: 1px solid #ccc;
    border-radius: 1rem;
}

#divInvoiceItems {
    margin-bottom: 3rem;
}

#frmInvoice span.field-validation-error {
    font-size: 11px;
    font-style: italic;
}

#chkSameAsBillTo {
    vertical-align: sub;
    width: 16px;
    height: 16px;
}

/* Mobile Responsive */
@media (min-width: 768px) {
    html {
        font-size: 12px;
    }
}
