/* Cargo Documents Styles */
.instructions-documents {
    .instructions {
        margin-bottom: 8px;
        color: #333;
    }
    
    .documents-section {
        border-top: 1px solid #ddd;
        padding-top: 8px;
        margin-top: 8px;
        
        .documents-list {
            .document-link {
                display: inline-block;
                color: #5bc0de;
                text-decoration: none;
                font-size: 12px;
                margin-right: 10px;
                margin-bottom: 5px;
                padding: 2px 6px;
                background: #e8f4fd;
                border-radius: 3px;
                border: 1px solid #bee5eb;
                transition: all 0.2s ease;
                
                &:hover {
                    background: #5bc0de;
                    color: white;
                    text-decoration: none;
                }
                
                i {
                    margin-right: 4px;
                    font-size: 12px;
                }
                
                &:last-child {
                    margin-right: 0;
                }
            }
        }
    }
}

/* Responsive adjustments for documents */
@media (max-width: 768px) {
    .instructions-documents {
        .documents-section {
            .documents-list {
                .document-link {
                    display: block;
                    margin-right: 0;
                    margin-bottom: 5px;
                    text-align: center;
                }
            }
        }
    }
}
