/* Burdigala Finance — OCR intelligent V49 */

.expense-ocr-intelligent{
    border-radius:34px;
    padding:20px;
    margin:0 0 16px;
}

.expense-ocr-head{
    display:flex;
    justify-content:space-between;
    gap:16px;
    margin-bottom:14px;
}

.expense-ocr-head span{
    display:block;
    color:#781428;
    font-size:13px;
    font-weight:950;
}

.expense-ocr-head strong{
    display:block;
    margin-top:4px;
    color:#21171a;
    font-size:22px;
    line-height:1;
    letter-spacing:-.04em;
}

.expense-ocr-head small{
    display:block;
    margin-top:6px;
    color:#827277;
    font-weight:800;
}

.expense-ocr-drop{
    display:grid;
    place-items:center;
    min-height:170px;
    border:1px dashed rgba(120,20,40,.22);
    border-radius:30px;
    padding:24px;
    cursor:pointer;
    text-align:center;
    background:rgba(255,255,255,.54);
}

.expense-ocr-drop input{
    display:none;
}

.expense-ocr-drop span{
    width:58px;
    height:58px;
    border-radius:22px;
    display:grid;
    place-items:center;
    background:linear-gradient(145deg,#b01742,#781428);
    color:#fff;
    box-shadow:0 18px 34px rgba(120,20,40,.25);
    font-size:28px;
}

.expense-ocr-drop strong{
    display:block;
    margin-top:14px;
    color:#781428;
    font-size:21px;
    line-height:1;
    font-weight:1000;
    letter-spacing:-.04em;
}

.expense-ocr-drop small{
    display:block;
    margin-top:8px;
    color:#827277;
    font-weight:800;
}

.expense-ocr-result{
    margin-top:14px;
    border-radius:24px;
    padding:16px;
    background:rgba(120,20,40,.07);
    color:#781428;
}

.expense-ocr-result strong{
    display:block;
    font-size:17px;
}

.expense-ocr-result small{
    display:block;
    margin-top:4px;
    color:#827277;
    font-weight:800;
}

.ocr-result-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:8px;
    margin-top:12px;
}

.ocr-result-grid span{
    border-radius:18px;
    padding:11px;
    background:rgba(255,255,255,.68);
    color:#827277;
    font-size:12px;
    font-weight:900;
}

.ocr-result-grid b{
    display:block;
    margin-top:4px;
    color:#781428;
    font-size:14px;
}

@media(max-width:620px){
    .ocr-result-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}