.dlux-docs-container{
    max-width:900px;
    margin:60px auto;
    padding:20px;
    font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color:#222;
}

#dlux-search-input{
    width:100%;
    padding:14px 16px;
    font-size:16px;
    border-radius:8px;
    border:1px solid #ddd;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
    box-shadow:0 1px 3px rgba(0,0,0,0.1);
    transition:all .2s ease;
}

#dlux-search-input:focus{
    border-color:#000;
    outline:none;
}

#dlux-results{
    margin-top:25px;
}

.dlux-loading{
    padding:15px;
    color:#666;
    font-size:14px;
}

.dlux-doc-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px;
    margin-bottom:10px;
    border-radius:8px;
    background:#fff;
    border:1px solid #eee;
    box-shadow:0 2px 6px rgba(0,0,0,0.05);
    transition:all .2s ease;
}

.dlux-doc-item:hover{
    transform:translateY(-2px);
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.dlux-doc-left{
    display:flex;
    align-items:center;
    gap:12px;
}

.dlux-doc-icon{
    font-size:22px;
}

.dlux-doc-name{
    font-size:14px;
    color:#333;
    word-break:break-word;
}

.dlux-download-btn{
    background:#000;
    color:#fff;
    padding:8px 14px;
    border-radius:6px;
    text-decoration:none;
    font-size:13px;
    font-weight:500;
}

.dlux-download-btn:hover{
    background:#2c2c2c;
}

.dlux-downloading{
    background:#fff3cd;
    border:1px solid #ffeeba;
    padding:12px;
    margin-bottom:15px;
    border-radius:6px;
    font-size:14px;
    color:#856404;
    animation: fadeIn .3s ease;
}

@keyframes fadeIn{
    from{opacity:0;}
    to{opacity:1;}
}