/* frontend/css/style.css */
body {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

#address-input {
    border-radius: 8px;
}

#suggestions {
    top: 100%;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.suggestion-item {
    cursor: pointer;
    border: none;
    border-bottom: 1px solid #eee;
    padding: 10px 16px;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}

.suggestion-item:last-child {
    border-bottom: none;
}

#result {
    border: none;
}

#result .card-header {
    border-radius: 8px 8px 0 0;
}

#result .card-footer {
    border-radius: 0 0 8px 8px;
}

.document-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 4px;
    text-decoration: none;
    color: #0d6efd;
    margin-bottom: 8px;
    transition: background-color 0.2s;
}

.document-link:hover {
    background-color: #e9ecef;
    color: #0a58ca;
}

.document-link .file-size {
    margin-left: auto;
    font-size: 12px;
    color: #6c757d;
}
