.doc-card {
    background: #b0d2ff0a;
    border: 1px solid #07325133;
    border-radius: 16px;
    transition: .3s;
    box-shadow: 0 4px 10px rgb(32 66 161 / 8%);
    height: 100%;
}

    .doc-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 22px rgba(0,0,0,.15);
    }

.doc-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545, #ff5f6d);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(220,53,69,.4);
}

.doc-title {
    color: var(--tiski-dark);
    font-weight: 600;
    font-size: 1rem;
}

.empty-box {
    border: 1px dashed rgba(7,50,81,.25);
    border-radius: 18px;
    background: rgba(176,210,255,.06);
    padding: 2.5rem;
    text-align: center;
}

    .empty-box i {
        font-size: 44px;
        opacity: .75;
    }

.doc-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: .5rem;
    min-width: 280px;
    max-width: 520px;
    width: 100%;
}

    .doc-search i.bi-search {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        opacity: .65;
        pointer-events: none;
    }

#docSearch {
    padding-left: 36px;
    border-radius: 12px;
    border: 1px solid rgba(7,50,81,.18);
    background: rgba(176,210,255,.06);
}

#docClear {
    border-radius: 12px;
    border: 1px solid rgba(7,50,81,.12);
}

.hidden-doc {
    display: none !important;
}
